Metadata-Version: 2.4
Name: langchain-qdrant
Version: 0.1.3
Summary: An integration package connecting Qdrant and LangChain
License: MIT
License-File: LICENSE
Requires-Python: >=3.8.1,<4.0
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
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Provides-Extra: fastembed
Requires-Dist: fastembed (>=0.3.3,<0.4.0) ; (python_full_version >= "3.8.1" and python_version < "3.13") and (extra == "fastembed")
Requires-Dist: langchain-core (>=0.1.52,<0.3)
Requires-Dist: pydantic (>=2.7.4,<3.0.0)
Requires-Dist: qdrant-client (>=1.10.1,<2.0.0)
Project-URL: Repository, https://github.com/langchain-ai/langchain
Project-URL: Release Notes, https://github.com/langchain-ai/langchain/releases?q=tag%3A%22langchain-qdrant%3D%3D0%22&expanded=true
Project-URL: Source Code, https://github.com/langchain-ai/langchain/tree/master/libs/partners/qdrant
Description-Content-Type: text/markdown

# langchain-qdrant

This package contains the LangChain integration with [Qdrant](https://qdrant.tech/).

## Installation

```bash
pip install -U langchain-qdrant
```

## Usage

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

```python
from langchain_qdrant import Qdrant

embeddings = ... # use a LangChain Embeddings class

vectorstore = Qdrant.from_existing_collection(
    embeddings=embeddings,
    collection_name="<COLLECTION_NAME>",
    url="http://localhost:6333",
)
```

