langchain/libs/partners/chroma
2024-05-15 19:29:35 +00:00
..
langchain_chroma chroma, mongodb: fix docstrings (#21629) 2024-05-13 21:27:43 +00:00
scripts
tests community: Chroma Adding create_collection_if_not_exists flag to Chroma constructor (#21420) 2024-05-09 11:45:10 -04:00
.gitignore
LICENSE
Makefile
poetry.lock multiple: releases with relaxed core dep (#21724) 2024-05-15 19:29:35 +00:00
pyproject.toml multiple: releases with relaxed core dep (#21724) 2024-05-15 19:29:35 +00: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)