What problem does it solve? Building production RAG and semantic search systems requires fast nearest neighbor search, metadata filtering, and scalable vector storage, which is difficult to implement from scratch. ## Core Features & Use Cases - Vector Search with Filtering: Perform nearest neighbor search combined with payload filters, geo queries, and full-text conditions using the qdrant-client Python API. - Hybrid and Multi-Vector Search: Combine dense and sparse vectors with Reciprocal Rank Fusion, named vectors, and multi-stage retrieval pipelines. - Production Scaling: Configure HNSW parameters, scalar/product/binary quantization, sharding, replication, snapshots, and collection aliases for large-scale deployments. - Use Case: Build a knowledge base by encoding documents with sentence-transformers, upserting them into a Qdrant collection, and retrieving top-k context chunks to feed into an LLM prompt. ## Quick Start Set up a Qdrant collection, insert my document embeddings, and show me how to run a filtered similarity search for my RAG pipeline.