mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-08 06:23:20 +00:00
- Description: updates Chroma integration API ref docs - Issue: #29817 - Dependencies: N/A - Twitter handle: @irieliu Co-authored-by: “Iris <“liuirisny@gmail.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)