chroma / clients /js /src /embeddings /IEmbeddingFunction.ts
badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame
92 Bytes
export interface IEmbeddingFunction {
generate(texts: string[]): Promise<number[][]>;
}