What problem does it solve?
It solves the problem of retrieving the most relevant documents or knowledge from large text collections when keyword search misses meaning, reducing time spent searching and improving RAG quality.
Core Features & Use Cases
- Semantic vector search: Store documents as embeddings and retrieve closest matches with options like cosine similarity, euclidean distance, and dot product.
- Fast, scalable retrieval: Uses high-performance indexing (HNSW), quantization, and caching to achieve sub-millisecond pattern retrieval.
- RAG-ready querying & diversity: Supports MMR (Maximal Marginal Relevance) and context synthesis to produce diverse, useful context for downstream LLM answers.
- Hybrid filtering: Combines vector similarity with metadata filters such as domain/category and date ranges for targeted results.
Quick Start
Ask the skill to initialize a local vector database for your embeddings, then query it for the top 5 most similar documents using cosine similarity.