langchain/libs/partners/qdrant
2025-08-11 12:43:41 -04:00
..
langchain_qdrant feat(qdrant): ruff fixes and rules (#32500) 2025-08-11 12:43:41 -04:00
scripts partners[lint]: run pyupgrade to get code in line with 3.9 standards (#30781) 2025-04-11 07:18:44 -04:00
tests feat(qdrant): ruff fixes and rules (#32500) 2025-08-11 12:43:41 -04:00
.gitignore
LICENSE
Makefile fix: automatically fix issues with ruff (#31897) 2025-07-07 14:13:10 -04:00
pyproject.toml feat(qdrant): ruff fixes and rules (#32500) 2025-08-11 12:43:41 -04:00
README.md
uv.lock feat(qdrant): ruff fixes and rules (#32500) 2025-08-11 12:43:41 -04:00

langchain-qdrant

This package contains the LangChain integration with Qdrant.

Installation

pip install -U langchain-qdrant

Usage

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

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",
)