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 many vector databases add unwanted overhead when you only need pure similarity search without metadata filtering. ## Core Features & Use Cases - Multiple Index Types: Choose from Flat (exact), IVF (clustered approximate), HNSW (graph-based), and PQ (memory-compressed) indices to balance speed, memory, and accuracy. - GPU Acceleration: Move indices to single or multiple GPUs for 10-100x faster search on large datasets. - Framework Integration: Works with LangChain and LlamaIndex vector stores for RAG pipelines. - Use Case: Build a semantic search engine over 10 million document embeddings by training an IVFPQ index, saving it to disk, and serving sub-millisecond k-NN queries. ## Quick Start Use the faiss skill to create an index for my embedding vectors and find the 5 nearest neighbors of a query vector.