langchain/libs/partners/chroma
2025-05-15 15:58:29 -04:00
..
langchain_chroma DOCS: partners/chroma: Fix documentation around chroma query filter syntax (#31058) 2025-04-30 17:51:07 -04:00
scripts multiple: pydantic 2 compatibility, v0.3 (#26443) 2024-09-13 14:38:45 -07:00
tests partners: update deps for langchain-chroma (#31251) 2025-05-15 15:55:15 -04:00
.gitignore chroma: fix persistence if client_settings is passed in (#25199) 2024-12-17 10:03:02 -05:00
LICENSE
Makefile infra: add UV_FROZEN to makefiles (#29642) 2025-02-06 14:36:54 -05:00
pyproject.toml chroma: release 0.2.4 (#31252) 2025-05-15 15:58:29 -04:00
README.md
uv.lock chroma: release 0.2.4 (#31252) 2025-05-15 15:58:29 -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)