export type EmbeddingProvider = { generate(text: string): Promise; generateBatch(texts: string[]): Promise; readonly dimensions: number; };