langchain/libs/partners/chroma
Mason Daugherty 12c0e9b7d8
fix(docs): local API reference documentation build (#32271)
ensure all relevant packages are correctly processed - cli wasn't
included, also fix ValueError
2025-07-28 00:50:20 -04:00
..
langchain_chroma fix(docs): local API reference documentation build (#32271) 2025-07-28 00:50:20 -04:00
scripts chroma[patch]: ruff fixes and rules (#31900) 2025-07-07 21:45:19 -04:00
tests ruff: add bugbear across packages (#31917) 2025-07-08 12:22:55 -04:00
.gitignore chroma: fix persistence if client_settings is passed in (#25199) 2024-12-17 10:03:02 -05:00
LICENSE
Makefile feat(docs): improve devx, fix Makefile targets (#32237) 2025-07-25 14:49:03 -04:00
pyproject.toml fix: LLM mimicking Unicode responses due to forced Unicode conversion of non-ASCII characters. (#32222) 2025-07-24 17:01:31 -04:00
README.md
uv.lock release(chroma): 0.2.5 (#32183) 2025-07-22 15:24:03 -04:00

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)