langchain/libs/partners/chroma
Christophe Bornet 038c287b3a
all: Improve make lint command (#25344)
* Removed `ruff check --select I` as `I` is already selected and checked
in the main `ruff check` command
* Added checks for non-empty `PYTHON_FILES`
* Run `ruff check` only on `PYTHON_FILES`

Co-authored-by: Erick Friis <erick@langchain.dev>
2024-08-23 18:23:52 -07:00
..
langchain_chroma [docs]: vector store integration pages (#24858) 2024-08-06 17:20:27 +00:00
scripts patch[Partners] Unified fix of incorrect variable declarations in all check_imports (#25014) 2024-08-03 13:49:41 -04:00
tests chroma: ban chromadb sdk versions 0.5.4 and 0.5.5 due to pydantic bug (#25586) 2024-08-20 23:21:38 +00:00
.gitignore
LICENSE
Makefile all: Improve make lint command (#25344) 2024-08-23 18:23:52 -07:00
poetry.lock chroma: add back fastapi optional dep (#25641) 2024-08-21 20:00:47 +00:00
pyproject.toml chroma: add back fastapi optional dep (#25641) 2024-08-21 20:00:47 +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)