EmbeddingClient#
dbally.embeddings.EmbeddingClient
#
Bases: ABC
Abstract client for creating text embeddings.
get_embeddings
abstractmethod
async
#
Creates embeddings for the given strings.
| PARAMETER | DESCRIPTION |
|---|---|
data |
List of strings to get embeddings for.
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
List[List[float]]
|
List of embeddings for the given strings. |