Metadata-Version: 2.1
Name: gigachain-chroma
Version: 0.1.2
Summary: An integration package connecting Chroma and GigaChain
Home-page: https://github.com/ai-forever/gigachain
License: MIT
Requires-Python: >=3.8.1,<4
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: chromadb (>=0.4.0,<0.6.0)
Requires-Dist: fastapi (>=0.95.2,<1)
Requires-Dist: gigachain-core (>=0.1.40,<0.3)
Requires-Dist: numpy (>=1,<2) ; python_version < "3.12"
Requires-Dist: numpy (>=1.26.0,<2.0.0) ; python_version >= "3.12"
Project-URL: Repository, https://github.com/ai-forever/gigachain
Project-URL: Source Code, https://github.com/ai-forever/gigachain/tree/master/libs/partners/chroma
Description-Content-Type: text/markdown

# gigachain-chroma

This package contains the LangChain integration with Chroma.

## Installation

```bash
pip install -U gigachain-chroma
```

## Usage

The `Chroma` class exposes the connection to the Chroma vector store.

```python
from langchain_chroma import Chroma

embeddings = ... # use a LangChain Embeddings class

vectorstore = Chroma(embeddings=embeddings)
```

