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 combined with payload filters, batch queries, and HNSW tuning via the qdrant-client Python library. - Hybrid and Multi-Vector Search: Combine dense and sparse vectors with Reciprocal Rank Fusion, plus quantization (scalar, product, binary) for memory optimization. - Production Deployment: Configure sharding, replication, snapshots, collection aliases, and multitenancy for distributed clusters. - Use Case: Build a RAG pipeline by embedding documents with sentence-transformers, upserting them into a Qdrant collection, and retrieving top-k context chunks to augment LLM prompts. ## Quick Start Use the qdrant skill to create a collection, upsert embedded documents, and run a filtered similarity search against my local Qdrant instance.