What problem does it solve? Performing nearest-neighbor search over millions or billions of dense embedding vectors is too slow with brute-force approaches, and this Skill provides guidance for building fast approximate similarity search indexes with FAISS. ## Core Features & Use Cases - Multiple Index Types: Covers Flat (exact), IVF (cluster-based), HNSW (graph-based), and PQ (memory-efficient) indexes with selection guidance by dataset size. - GPU Acceleration: Instructions for moving indexes to single or multiple GPUs for 10-100x speedups on large datasets. - Framework Integration: Examples for LangChain and LlamaIndex vector store integration, plus index save/load workflows. - Use Case: When building a RAG pipeline over 5 million document embeddings, use this Skill to create an HNSW index, tune efSearch for recall, and persist the trained index to disk. ## Quick Start Ask the agent to create a FAISS index for your embedding vectors and run a k-nearest-neighbor search on a sample query.