CohereEmbeddingFunction
class CohereEmbeddingFunction implements IEmbeddingFunction { }
constructor({ cohere_api_key, model }: {
cohere_api_key: string;
model?: string;
});private apiKey;
private cohereAiApi?;
private initCohereClient;
private model;
generate(texts: string[]): Promise<number[][]>;