import type { OrchestratorInvokeOptions, OrchestratorResult } from './orchestrator.js'; /** * Invoke Ollama's native /api/chat endpoint directly via fetch. * Unlike the OpenAI-compatible adapter, this supports passing `num_ctx` * to dynamically control context length (and VRAM usage). * * @see https://github.com/mmnto-ai/totem/issues/298 */ export declare function invokeOllamaOrchestrator(opts: OrchestratorInvokeOptions & { baseUrl?: string; numCtx?: number; }): Promise; //# sourceMappingURL=ollama-orchestrator.d.ts.map