Skip to main content
Infino is a LlamaIndex vector store: vector, full-text (BM25), hybrid (RRF), and SQL retrieval over a single copy of your data on object storage. It stores the node text alongside the embedding, so one Infino table replaces both the vector store and the docstore. Bring your own embeddings.
The llama-index-vector-stores-infino package provides InfinoVectorStore, a BasePydanticVectorStore with stores_text=True. Requires Python 3.10+; bring an embeddings provider separately (for example pip install llama-index-embeddings-openai).

Quickstart

Local, object storage, or hosted cloud

The store construction is identical everywhere; only the infino.connect(...) call differs.

Query modes

All four VectorStoreQueryModes are first-class on the same store:
Hybrid fuses BM25 and vector search with reciprocal-rank fusion in one engine call. Structured metadata filters (the full LlamaIndex operator set), a text-pushdown pre-filter, a SQL escape hatch, and async variants are all supported; see the package README for the complete reference.

See also

Last modified on September 10, 2026