mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-27 21:45:08 +00:00
**Description:** Deprecated version of Chroma >=0.5.5 <0.5.12 due to a serious correctness issue that caused some embeddings for deployments with multiple collections to be lost (read more on the issue in Chroma repo) **Issue:** chroma-core/chroma#2922 (fixed by chroma-core/chroma##2923 and released in [0.5.13](https://github.com/chroma-core/chroma/releases/tag/0.5.13)) **Dependencies:** N/A **Twitter handle:** `@t_azarov` |
||
---|---|---|
.. | ||
langchain_chroma | ||
scripts | ||
tests | ||
.gitignore | ||
LICENSE | ||
Makefile | ||
poetry.lock | ||
pyproject.toml | ||
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)