embedBlocking
Blocking Java-friendly wrapper around embed for single-text embedding.
Runs the suspending embed call on an IO-bound dispatcher and blocks until the result is available.
Return
A list of floating-point values representing the embedding vector.
Parameters
The text to embed.
The model to use for embedding. Must have the Embed capability.
An optional ExecutorService to control the execution context. If null, a default IO-bound dispatcher is used.
Throws
if the model does not have the Embed capability.
Blocking Java-friendly wrapper around embed for batch embedding.
Runs the suspending embed call on an IO-bound dispatcher and blocks until the result is available.
Return
A list of embedding vectors, one per input string.
Parameters
The list of texts to embed.
The model to use for embedding. Must have the Embed capability.
An optional ExecutorService to control the execution context. If null, a default IO-bound dispatcher is used.
Throws
if the model does not have the Embed capability.