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
wenngong f9aea3db07
partners: add lint docstrings for chroma module (#23249)
Description: add lint docstrings for chroma module
Issue: the issue #23188 @baskaryan

test:  ruff check passed.


![image](https://github.com/langchain-ai/langchain/assets/76683249/5e168a0c-32d0-464f-8ddb-110233918019)

---------

Co-authored-by: gongwn1 <gongwn1@lenovo.com>
3 months ago
..
langchain_chroma partners: add lint docstrings for chroma module (#23249) 3 months ago
scripts partners: add lint docstrings for chroma module (#23249) 3 months ago
tests chroma[patch]: Chroma - remove reference to collection upon delete_collection (#21817) 4 months ago
.gitignore chroma: Add chroma partner package (#19292) 5 months ago
LICENSE chroma: Add chroma partner package (#19292) 5 months ago
Makefile chroma: Add chroma partner package (#19292) 5 months ago
README.md chroma: Add chroma partner package (#19292) 5 months ago
poetry.lock partners: add lint docstrings for chroma module (#23249) 3 months ago
pyproject.toml partners: add lint docstrings for chroma module (#23249) 3 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)