langchain/libs/partners/chroma
Trayan Azarov 59bbda9ba3
chroma: Deprecating versions 0.5.7 thru 0.5.12 (#27305)
**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`
2024-10-14 11:56:05 -04:00
..
langchain_chroma langchain_chroma[patch]: updated example for get documents with where clause (#26767) 2024-10-08 20:21:58 +00:00
scripts multiple: pydantic 2 compatibility, v0.3 (#26443) 2024-09-13 14:38:45 -07:00
tests langchain_chroma: Pass through kwargs to Chroma collection.delete (#25970) 2024-09-19 04:21:24 +00:00
.gitignore
LICENSE
Makefile standard-tests[patch]: add Ser/Des test 2024-09-04 10:24:06 -07:00
poetry.lock chroma: Deprecating versions 0.5.7 thru 0.5.12 (#27305) 2024-10-14 11:56:05 -04:00
pyproject.toml chroma: Deprecating versions 0.5.7 thru 0.5.12 (#27305) 2024-10-14 11:56:05 -04: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)