langchain/libs/partners/chroma
2025-07-08 13:52:12 -04:00
..
langchain_chroma fix: bump lockfiles (#31923) 2025-07-08 13:27:55 -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 fix: automatically fix issues with ruff (#31897) 2025-07-07 14:13:10 -04:00
pyproject.toml chroma[nit]: descriptions in pyproject.toml (#31925) 2025-07-08 13:52:12 -04:00
README.md
uv.lock fix: bump lockfiles (#31923) 2025-07-08 13:27:55 -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)