import type { OrchestratorInvokeOptions, OrchestratorResult } from './orchestrator.js'; /** * Invoke an OpenAI-compatible API via the `openai` SDK. * Supports OpenAI, Ollama, LM Studio, Groq, OpenRouter, and any * server implementing the `/v1/chat/completions` endpoint. * * @see https://github.com/mmnto-ai/totem/issues/285 */ export declare function invokeOpenAIOrchestrator(opts: OrchestratorInvokeOptions & { baseUrl?: string; }): Promise; //# sourceMappingURL=openai-orchestrator.d.ts.map