langchain/libs/partners/chroma
2024-09-13 17:31:34 -07:00
..
langchain_chroma [docs]: vector store integration pages (#24858) 2024-08-06 17:20:27 +00:00
scripts multiple: pydantic 2 compatibility, v0.3 (#26443) 2024-09-13 14:38:45 -07:00
tests chroma: ban chromadb sdk versions 0.5.4 and 0.5.5 due to pydantic bug (#25586) 2024-08-20 23:21:38 +00:00
.gitignore
LICENSE
Makefile standard-tests[patch]: add Ser/Des test 2024-09-04 10:24:06 -07:00
poetry.lock chroma[patch]: Release 0.1.4 (#26470) 2024-09-13 17:31:34 -07:00
pyproject.toml chroma[patch]: Release 0.1.4 (#26470) 2024-09-13 17:31:34 -07:00
README.md

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)