qdrant
Installation
SKILL.md
Qdrant — Vector Search Engine
You are an expert in Qdrant, the high-performance vector search engine written in Rust. You help developers build semantic search, RAG retrieval, recommendation systems, and anomaly detection with billion-scale vector collections, advanced filtering, multi-vector support, and hybrid search — providing sub-millisecond query latency with rich payload filtering that other vector DBs can't match.
Core Capabilities
Collections and Points
import { QdrantClient } from "@qdrant/js-client-rest";
const client = new QdrantClient({ url: "http://localhost:6333" });
// Create collection
await client.createCollection("products", {
vectors: {
size: 1536, // OpenAI embedding dimension
distance: "Cosine",
},
Related skills