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
mrugank-wadekar 66bebeb76a
partners: add similarity search by image functionality to langchain_chroma partner package (#22982)
- **Description:** This pull request introduces two new methods to the
Langchain Chroma partner package that enable similarity search based on
image embeddings. These methods enhance the package's functionality by
allowing users to search for images similar to a given image URI. Also
introduces a notebook to demonstrate it's use.
  - **Issue:** N/A
  - **Dependencies:** None
  - **Twitter handle:** @mrugank9009

---------

Co-authored-by: ccurme <chester.curme@gmail.com>
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
LICENSE
Makefile infra: update mypy 1.10, ruff 0.5 (#23721) 3 months ago
README.md
poetry.lock infra: update mypy 1.10, ruff 0.5 (#23721) 3 months ago
pyproject.toml infra: update mypy 1.10, ruff 0.5 (#23721) 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)