toggle menu
lmos-router-vector
0.2.0
jvm
switch theme
search in API
lmos-router-vector
/
ai.ancf.lmos.router.vector
/
EmbeddingClient
Embedding
Client
interface
EmbeddingClient
An interface for a client that can embed text.
Inheritors
DefaultEmbeddingClient
OpenAIEmbeddingClient
Members
Functions
batch
Embed
Link copied to clipboard
abstract
fun
batchEmbed
(
texts
:
List
<
String
>
)
:
Result
<
List
<
List
<
Double
>
>
,
EmbeddingClientException
>
Embeds the given texts.
embed
Link copied to clipboard
abstract
fun
embed
(
text
:
String
)
:
Result
<
List
<
Double
>
,
EmbeddingClientException
>
Embeds the given text.