langchain-chroma


Namelangchain-chroma JSON
Version 0.2.2 PyPI version JSON
download
home_pageNone
SummaryAn integration package connecting Chroma and LangChain
upload_time2025-02-13 02:47:07
maintainerNone
docs_urlNone
authorNone
requires_python<4,>=3.9
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # langchain-chroma

This package contains the LangChain integration with Chroma.

## Installation

```bash
pip install -U langchain-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)
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "langchain-chroma",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/40/be/bf74dc6b721d71b29134d15703bdc167cd26e17667b68ef55a0feb701e7a/langchain_chroma-0.2.2.tar.gz",
    "platform": null,
    "description": "# langchain-chroma\n\nThis package contains the LangChain integration with Chroma.\n\n## Installation\n\n```bash\npip install -U langchain-chroma\n```\n\n## Usage\n\nThe `Chroma` class exposes the connection to the Chroma vector store.\n\n```python\nfrom langchain_chroma import Chroma\n\nembeddings = ... # use a LangChain Embeddings class\n\nvectorstore = Chroma(embeddings=embeddings)\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An integration package connecting Chroma and LangChain",
    "version": "0.2.2",
    "project_urls": {
        "Release Notes": "https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain-chroma%3D%3D0%22&expanded=true",
        "Source Code": "https://github.com/langchain-ai/langchain/tree/master/libs/partners/chroma",
        "repository": "https://github.com/langchain-ai/langchain"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0ad02b43c9c6243d430a32fda148236ba02e49289326a58aeef57723f3a92fe",
                "md5": "e22a83b573e280044d9fea1d79531335",
                "sha256": "7766335f16975c2059bb6e8ea75a59a4082c52e6c9d66827681d1bce2c2756a2"
            },
            "downloads": -1,
            "filename": "langchain_chroma-0.2.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e22a83b573e280044d9fea1d79531335",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.9",
            "size": 11364,
            "upload_time": "2025-02-13T02:47:06",
            "upload_time_iso_8601": "2025-02-13T02:47:06.826354Z",
            "url": "https://files.pythonhosted.org/packages/e0/ad/02b43c9c6243d430a32fda148236ba02e49289326a58aeef57723f3a92fe/langchain_chroma-0.2.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "40bebf74dc6b721d71b29134d15703bdc167cd26e17667b68ef55a0feb701e7a",
                "md5": "02f120f6fe23d47eef79b19b87caef0f",
                "sha256": "11225ca6077b2bf919b84d74e4d343121e077c0fa3274db1929a270fef9d1002"
            },
            "downloads": -1,
            "filename": "langchain_chroma-0.2.2.tar.gz",
            "has_sig": false,
            "md5_digest": "02f120f6fe23d47eef79b19b87caef0f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.9",
            "size": 15890,
            "upload_time": "2025-02-13T02:47:07",
            "upload_time_iso_8601": "2025-02-13T02:47:07.945541Z",
            "url": "https://files.pythonhosted.org/packages/40/be/bf74dc6b721d71b29134d15703bdc167cd26e17667b68ef55a0feb701e7a/langchain_chroma-0.2.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-13 02:47:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "langchain-ai",
    "github_project": "langchain",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "langchain-chroma"
}
        
Elapsed time: 0.73889s