langchain/libs/partners/chroma
ZhangShenao d26555c682
[VectorStore] Improvement: Improve chroma vector store (#28524)
- Complete unit test
- Fix spelling error
2024-12-05 11:58:32 -05:00
..
langchain_chroma [VectorStore] Improvement: Improve chroma vector store (#28524) 2024-12-05 11:58:32 -05:00
scripts multiple: pydantic 2 compatibility, v0.3 (#26443) 2024-09-13 14:38:45 -07:00
tests [VectorStore] Improvement: Improve chroma vector store (#28524) 2024-12-05 11:58:32 -05:00
.gitignore chroma: Add chroma partner package (#19292) 2024-04-10 19:33:45 +00:00
LICENSE chroma: Add chroma partner package (#19292) 2024-04-10 19:33:45 +00:00
Makefile standard-tests[patch]: add Ser/Des test 2024-09-04 10:24:06 -07:00
poetry.lock chroma[patch]: add get_by_ids and fix bug (#28516) 2024-12-04 14:00:36 -05:00
pyproject.toml chroma[patch]: add get_by_ids and fix bug (#28516) 2024-12-04 14:00:36 -05: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)