mirror of
https://github.com/hwchase17/langchain.git
synced 2026-03-31 01:14:03 +00:00
Description: add lint docstrings for chroma module Issue: the issue #23188 @baskaryan test: ruff check passed.  --------- Co-authored-by: gongwn1 <gongwn1@lenovo.com>
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)