import { OpenAIEmbeddings } from '@langchain/openai'; import { ICopilotModel } from '@metad/contracts'; import { VLLMModelCredentials } from '../types.js'; import { TChatModelOptions, TextEmbeddingModelManager } from '@xpert-ai/plugin-sdk'; import { VLLMProviderStrategy } from '../provider.strategy.js'; export declare class VLLMTextEmbeddingModel extends TextEmbeddingModelManager { constructor(modelProvider: VLLMProviderStrategy); getEmbeddingInstance(copilotModel: ICopilotModel, options?: TChatModelOptions): OpenAIEmbeddings; validateCredentials(model: string, credentials: VLLMModelCredentials): Promise; } //# sourceMappingURL=text-embedding.d.ts.map