* Creates embeddings for the given texts. * @param texts Array of text strings to create embeddings for * @param model Optional model ID to use for embeddings * @returns Promise resolving to an EmbeddingResponse
(texts: string[], model?: string)
| 10 | * @returns Promise resolving to an EmbeddingResponse |
| 11 | */ |
| 12 | createEmbeddings(texts: string[], model?: string): Promise<EmbeddingResponse> |
| 13 | |
| 14 | /** |
| 15 | * Validates the embedder configuration by testing connectivity and credentials. |
no outgoing calls
no test coverage detected