langchain/libs/partners/chroma
ccurme 42257b120f
partners: fix numpy dep (#22858)
Following https://github.com/langchain-ai/langchain/pull/22813, which
added python 3.12 to CI, here we update numpy accordingly in partner
packages.
2024-06-13 14:46:42 -04:00
..
langchain_chroma docs: Chroma docstrings update (#22001) 2024-05-22 21:45:30 +00:00
scripts chroma: Add chroma partner package (#19292) 2024-04-10 19:33:45 +00:00
tests chroma[patch]: Chroma - remove reference to collection upon delete_collection (#21817) 2024-05-20 15:42:36 -07: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 chroma: Add chroma partner package (#19292) 2024-04-10 19:33:45 +00:00
poetry.lock partners: fix numpy dep (#22858) 2024-06-13 14:46:42 -04:00
pyproject.toml partners: fix numpy dep (#22858) 2024-06-13 14:46:42 -04: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)