langchain-qdrant
An integration package connecting Qdrant and LangChain
What it is and what it does
langchain-qdrant is a bridge between LangChain and Qdrant, a vector database designed for semantic search. It lets you store document embeddings in Qdrant and retrieve them through LangChain's standard vector store interface, enabling retrieval-augmented generation (RAG) and semantic search workflows. The package wraps Qdrant's Python client and integrates with LangChain's embedding and document abstractions.
Typically used to build applications that combine large language models with external knowledge: you embed documents, store them in Qdrant via this package, then query them semantically to augment LLM prompts. It depends on langchain-core for the vector store contract, pydantic for data validation, and qdrant-client to communicate with the Qdrant service.
Use it for:
- Build RAG systems that retrieve relevant documents from Qdrant to augment LLM responses
- Implement semantic search over a corpus of documents stored in Qdrant
- Create chatbots with long-term memory by storing conversation embeddings in Qdrant
- Filter and rerank search results using Qdrant's metadata and payload capabilities within LangChain workflows
- Prototype vector search applications without managing Qdrant client code directly
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Connects LangChain applications to Qdrant vector database for semantic search and retrieval-augmented generation workflows.
Yes, if you are building a LangChain application that needs vector search. Low install friction, active maintenance, no security issues, and permissive MIT license make it a straightforward choice. The only prerequisite is Python 3.10+ and access to a Qdrant instance.
Install
langchain-qdrant on PyPI
pip
pip install langchain-qdrantuv
uv add langchain-qdrantpoetry
poetry add langchain-qdrantInstalling langchain-qdrant
Before you install
Low friction: pure Python wheel with three runtime dependencies (langchain-core, pydantic, qdrant-client). Actively maintained as of 2026-08-14 with no known vulnerabilities.
License in practice
MIT license permits commercial and private use with minimal restrictions—suitable for most projects.
Quickstart
pip install langchain-qdrant
from langchain_qdrant import QdrantVectorStore
from qdrant_client import QdrantClient
client = QdrantClient(":memory:")
vector_store = QdrantVectorStore.from_documents(
documents, embeddings, client=client, collection_name="my_collection"
)
Requires Python 3.10 or later (supports up to <4.0.0). Qdrant server or in-memory instance must be available.
Verify before relying
- Whether this package handles vector dimension mismatches or type validation automatically
- Performance characteristics with large document collections (millions of embeddings)
- Supported Qdrant server versions and backward compatibility guarantees
Package facts
| License | MIT (permissive) |
| Python support | supports the current Python release (<4.0.0,>=3.10.0) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — langchain-core, pydantic, qdrant-client |
| Maintenance | actively maintained — 296 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 848,403/month — #4,911 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: langchain_qdrant-1.1.0-py3-none-any.whl
Tags
More Artificial Intelligence packages
LiteLLM provides a unified Python interface to…
permissive · top 100 on PyPI
huggingface-hubClient library and CLI tool for downloading,…
permissive · top 100 on PyPI
langchainLangChain provides a framework for building…
permissive · top 1,000 on PyPI
hf-xethf-xet provides chunk-based deduplication and…
permissive · top 1,000 on PyPI
tokenizersTokenizers converts raw text into token…
permissive · top 1,000 on PyPI
transformersTransformers provides a unified framework for…
permissive · top 1,000 on PyPI
langchain-chromaConnects LangChain applications to Chroma, a…
permissive · top 5,000 on PyPI
langchain-cohereConnects LangChain applications to Cohere's…
permissive · top 5,000 on PyPI
langchain-exaIntegrates Exa's web search API with LangChain,…
permissive · top 15,000 on PyPI
langchain-mongodbConnects MongoDB Atlas Vector Search to…
unclear · top 5,000 on PyPI
langchain-oracledbIntegrates Oracle Database with LangChain to…
unclear · top 15,000 on PyPI
langchain-weaviateIntegrates Weaviate vector database with…
permissive · top 15,000 on PyPI
langchain-milvusIntegrates LangChain with Milvus vector…
permissive · top 15,000 on PyPI
qdrant-clientPython client library for Qdrant vector search…
permissive · top 1,000 on PyPI
langchain-postgresProvides LangChain abstractions for vector…
permissive · top 5,000 on PyPI
langchain-pineconeConnects LangChain applications to Pinecone…
permissive · top 5,000 on PyPI