What problem does it solve? Building production RAG and semantic search systems requires a vector database that handles fast nearest neighbor search, metadata filtering, and horizontal scaling, which is complex to implement from scratch. ## Core Features & Use Cases - Vector Search with Filtering: Perform nearest neighbor search with rich payload filtering, batch queries, and multiple distance metrics (COSINE, EUCLID, DOT, MANHATTAN). - Hybrid and Multi-Vector Search: Combine dense and sparse vectors with named vector configurations and Reciprocal Rank Fusion for hybrid retrieval. - Production Scaling: Use quantization (scalar, product, binary), sharding, replication, snapshots, and collection aliases for large-scale deployments. - Use Case: Build a knowledge base RAG pipeline by encoding documents with sentence-transformers, upserting them into a Qdrant collection, and retrieving top-k context chunks filtered by metadata for an LLM prompt. ## Quick Start Use the qdrant skill to create a collection, insert my document embeddings, and run a filtered similarity search against my local Qdrant instance.