import { LangChainAssistant } from './langchain'; import { ProcessMessageProps } from '../types'; export declare class OllamaAssistant extends LangChainAssistant { private aiModel; private static baseUrl; private static instance; private constructor(); protected static checkBaseUrl(): void; protected static isBaseUrlChanged(baseUrl?: string): boolean | "" | undefined; static getInstance(): Promise; restart(): void; static configure({ baseUrl, model, instructions, temperature, topP, description }: { baseUrl?: string; model?: string; instructions?: string; temperature?: number; topP?: number; name?: string; description?: string; version?: string; }): void; processTextMessage({ textMessage, streamMessageCallback, }: ProcessMessageProps): Promise; } //# sourceMappingURL=ollama.d.ts.map