Embedding Registry
You can get a supported embedding function from the registry, and then use it in your table schema. Once configured, the embedding function will automatically generate embeddings when you insert data into the table. Query-time behavior depends on SDK: Python/TypeScript can query with text directly, while Rust examples typically compute query embeddings explicitly before vector search.Using an embedding function
Create an embedding function before you attach it to table or schema metadata. Python and TypeScript fetch provider implementations from the embedding registry, while Rust constructs the provider embedding function directly and registers it on the connection before using it in anEmbeddingDefinition.
Provider configuration is SDK-specific, so copy the option names from the provider page for the SDK you use.
For example, the OpenAI model is selected with name in Python, model in TypeScript, and the model argument
to OpenAIEmbeddingFunction::new_with_model in Rust.
When ingesting data with an embedding definition, LanceDB only computes the vector column if that
column is missing from the incoming batch or present but entirely null. If you provide any non-null
values in the vector column, LanceDB treats the column as user-supplied and does not backfill the
remaining rows in that batch.
For reusable runtime configuration, the registry also supports
$var: placeholders in embedding-function config.
This is useful for provider secrets and environment-specific settings in Python and TypeScript.
- Python uses
registry.set_var(...). - TypeScript uses
registry.setVar(...). - You can provide a fallback with
$var:name:default. - Sensitive values such as API keys should be passed through registry variables instead of hardcoding them in config.
Multiple embedding columns
A single table can include more than one embedding definition when you want to store multiple semantic views of the same data, or generate embeddings from different source columns. In practice, each embedding definition maps one source column to one vector column, and the table schema can contain multiple such pairs. The exact setup differs by SDK, but the underlying pattern is the same: define a distinct source/vector pair for each embedding function you want applied during ingest. In TypeScript, automatic query embedding currently uses the first embedding function stored in the table metadata. If a table has multiple embedding definitions and you need to query a specific vector column, compute the query embedding explicitly and pass the vector to the search builder.Embedding model providers
LanceDB supports most popular embedding providers.Text embeddings
Multimodal embedding
You can find all supported embedding models in the integrations section.
Embeddings in LanceDB Enterprise
Enterprise In LanceDB Enterprise, embedding generation during data ingestion is client-side and the resulting vectors are stored on the remote table.The Enterprise server does not currently generate embeddings from query text on its own. Any automatic
query-time embedding happens on the client side.
How string queries are interpreted
For the Python remote client,table.search("hello") can take two different paths:
- If the selected vector column has embedding metadata
(i.e., the table schema stores the source-column, vector-column, and
embedding-function mapping created from fields like
SourceField()andVectorField()during table creation), then the embeddings are computed in the Python client process. The client uses the same local LanceDB embedding registry used by OSS tables to reconstruct the embedding function from schema metadata, compute the query vector in the client process, and send that vector to Enterprise for search. - If the table does not have embedding metadata for that search,
table.search("hello")inautomode is treated as an FTS query instead.
auto mode: if no embedding providers have been
registered in the process, search("text") falls back to FTS. Once an embedding provider has been
imported and registered, the client expects table embedding metadata for automatic vector search and
raises an error if the table has none.
The manual query-embedding flow below works across Enterprise SDKs and is an explicit path you can use when you
want full control over query-time behavior.
Custom Embedding Functions
You can always implement your own embedding function:- Python/TypeScript: subclass
TextEmbeddingFunction(text) orEmbeddingFunction(multimodal). - Rust: implement the
EmbeddingFunctiontrait.