import type { ModelProvider } from "@bolt-foundry/gambit-core"; export declare const OLLAMA_PREFIX = "ollama/"; export declare const DEFAULT_OLLAMA_BASE_URL = "http://localhost:11434/v1"; type OpenAIClient = { responses: { create: (params: unknown, options?: { signal?: AbortSignal; }) => Promise; }; }; export declare function fetchOllamaTags(baseURL: string | undefined): Promise>; export declare function ensureOllamaModel(model: string, baseURL: string | undefined): Promise; export declare function createOllamaProvider(opts: { apiKey?: string; baseURL?: string; client?: OpenAIClient; }): ModelProvider; export {}; //# sourceMappingURL=ollama.d.ts.map