What problem does it solve? Searching for nearest neighbors across millions or billions of embedding vectors is too slow with brute-force methods, and this Skill provides guidance for building fast approximate similarity search indexes with FAISS. ## Core Features & Use Cases - Index Selection Guidance: Covers Flat, IVF, HNSW, and Product Quantization index types with accuracy, speed, and memory trade-offs. - GPU Acceleration: Shows how to move indices to single or multiple GPUs for 10-100x faster search. - Framework Integration: Includes LangChain and LlamaIndex vector store integration patterns plus index save/load workflows. - Use Case: When building a RAG pipeline over millions of document embeddings, use this Skill to create an HNSW or IVF+PQ index, tune nprobe or efSearch, and persist the trained index to disk. ## Quick Start Use the faiss skill to build a similarity search index over my embedding vectors and find the 5 nearest neighbors for a query vector.