import type { AiCredential } from './types'; /** * Embedding 服务抽象基类 */ export declare abstract class EmbeddingService { abstract embed(text: string, credential: AiCredential, modelId: string): Promise; abstract embedBatch(texts: string[], credential: AiCredential, modelId: string): Promise; }