export interface BaseEmbeddings { embedDocuments(texts: string[]): Promise; embedQuery(text: string): Promise; getDimensions(): number; }