langchain/libs/partners/chroma
2024-06-27 13:58:24 -07:00
..
langchain_chroma partners: add lint docstrings for chroma module (#23249) 2024-06-21 19:49:24 +00:00
scripts partners: add lint docstrings for chroma module (#23249) 2024-06-21 19:49:24 +00:00
tests chroma[patch]: Chroma - remove reference to collection upon delete_collection (#21817) 2024-05-20 15:42:36 -07:00
.gitignore
LICENSE
Makefile
poetry.lock chroma[patch]: loosen py req (#23599) 2024-06-27 12:40:59 -07:00
pyproject.toml chroma[patch]: Release 0.1.2 (#23604) 2024-06-27 13:58:24 -07:00
README.md

langchain-chroma

This package contains the LangChain integration with Chroma.

Installation

pip install -U langchain-chroma

Usage

The Chroma class exposes the connection to the Chroma vector store.

from langchain_chroma import Chroma

embeddings = ... # use a LangChain Embeddings class

vectorstore = Chroma(embeddings=embeddings)