File size: 92 Bytes
287a0bc
 
 
1
2
3
4
export interface IEmbeddingFunction {
    generate(texts: string[]): Promise<number[][]>;
}