You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/partners/chroma
Erick Friis 3dce2e1d35
all: add release notes to pypi (#24519)
2 months ago
..
langchain_chroma partners: add similarity search by image functionality to langchain_chroma partner package (#22982) 2 months ago
scripts infra: update mypy 1.10, ruff 0.5 (#23721) 3 months ago
tests infra: update mypy 1.10, ruff 0.5 (#23721) 3 months ago
.gitignore chroma: Add chroma partner package (#19292) 6 months ago
LICENSE chroma: Add chroma partner package (#19292) 6 months ago
Makefile infra: update mypy 1.10, ruff 0.5 (#23721) 3 months ago
README.md chroma: Add chroma partner package (#19292) 6 months ago
poetry.lock infra: update mypy 1.10, ruff 0.5 (#23721) 3 months ago
pyproject.toml all: add release notes to pypi (#24519) 2 months ago

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)