Skip to main content
Infino is bring-your-own-embeddings: it does not call an embedding model for you. You compute vectors with whatever model you like, store them in a vector column, and Infino builds the vector index over them.

The pattern

  1. Declare a fixed-width vector column whose dimension matches your model’s output.
  2. Declare a vector index on it with the same dimension and a distance metric.
  3. Embed your text and append the vectors alongside the rows.
Embed your queries with the same model at search time, and pass the query vector to vector_search (see Search).

Choosing a metric

Match the index metric to how your embeddings are produced:

See also

Last modified on July 6, 2026