export interface IEmbeddingProvider { embed(text: string): Promise; embedBatch(texts: string[]): Promise; getDimension(): number; }