langchain/libs/partners/chroma
Iris Liu 0d9f0b4215
docs: updates Chroma integration API ref docs (#29826)
- Description: updates Chroma integration API ref docs
- Issue: #29817
- Dependencies: N/A
- Twitter handle: @irieliu

Co-authored-by: “Iris <“liuirisny@gmail.com”>
2025-02-15 21:05:21 -05:00
..
langchain_chroma docs: updates Chroma integration API ref docs (#29826) 2025-02-15 21:05:21 -05:00
scripts multiple: pydantic 2 compatibility, v0.3 (#26443) 2024-09-13 14:38:45 -07:00
tests chroma: fix persistence if client_settings is passed in (#25199) 2024-12-17 10:03:02 -05: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 multiple: fix uv path deps (#29790) 2025-02-13 21:32:34 +00:00
README.md
uv.lock multiple: fix uv path deps (#29790) 2025-02-13 21:32:34 +00: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)