langchain/libs/partners/chroma
2025-01-07 15:31:50 -08:00
..
langchain_chroma chroma: fix persistence if client_settings is passed in (#25199) 2024-12-17 10:03:02 -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 chroma: Add chroma partner package (#19292) 2024-04-10 19:33:45 +00:00
Makefile multiple: disable socket for unit tests (#29080) 2025-01-07 15:31:50 -08:00
poetry.lock multiple: disable socket for unit tests (#29080) 2025-01-07 15:31:50 -08:00
pyproject.toml multiple: disable socket for unit tests (#29080) 2025-01-07 15:31:50 -08:00
README.md chroma: Add chroma partner package (#19292) 2024-04-10 19:33:45 +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)