langchain-chroma


Namelangchain-chroma JSON
Version 0.2.5 PyPI version JSON
download
home_pageNone
SummaryAn integration package connecting Chroma and LangChain.
upload_time2025-07-22 19:26:51
maintainerNone
docs_urlNone
authorNone
requires_python>=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": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/3d/37/e841c916db260732ffef3d7e51ceca826aeac26b18615984b4e6381cd07c/langchain_chroma-0.2.5.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.5",
    "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": "3df9705820c4792540383d4cf9c96fc55784fbd972897f5e84e3160001aba51d",
                "md5": "10a6620bbff0f0fd7ab633deefa7618b",
                "sha256": "dcb80330cd8ac9a87695a5ba237a15affeb805751bdb42dee213b12e0d379825"
            },
            "downloads": -1,
            "filename": "langchain_chroma-0.2.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "10a6620bbff0f0fd7ab633deefa7618b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 12453,
            "upload_time": "2025-07-22T19:26:50",
            "upload_time_iso_8601": "2025-07-22T19:26:50.570049Z",
            "url": "https://files.pythonhosted.org/packages/3d/f9/705820c4792540383d4cf9c96fc55784fbd972897f5e84e3160001aba51d/langchain_chroma-0.2.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d37e841c916db260732ffef3d7e51ceca826aeac26b18615984b4e6381cd07c",
                "md5": "d60ba5e1f054fddcebd28fbe9ae8b5a9",
                "sha256": "b63e9df8c3fbb316313c232214b7bc8b696a505039a6f7adf29b992a74cc4b2e"
            },
            "downloads": -1,
            "filename": "langchain_chroma-0.2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "d60ba5e1f054fddcebd28fbe9ae8b5a9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 17202,
            "upload_time": "2025-07-22T19:26:51",
            "upload_time_iso_8601": "2025-07-22T19:26:51.546944Z",
            "url": "https://files.pythonhosted.org/packages/3d/37/e841c916db260732ffef3d7e51ceca826aeac26b18615984b4e6381cd07c/langchain_chroma-0.2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-22 19:26:51",
    "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: 1.00732s