import type { StreamFunction, StreamOptions, ToolChoice } from "../types.js"; export interface OllamaChatOptions extends StreamOptions { reasoning?: "minimal" | "low" | "medium" | "high" | "xhigh" | "max"; disableReasoning?: boolean; toolChoice?: ToolChoice; } /** Retry EOS-only Ollama completions before the agent loop sees an empty stop. */ export declare const streamOllama: StreamFunction<"ollama-chat">;