import { type LlmProvider } from "./provider.js"; /** * TokenRouter — an OpenAI-compatible gateway to frontier open models (Kimi, * DeepSeek, Qwen, GLM, GPT-OSS, MiniMax) behind one bearer key. Chat * Completions at `/chat/completions`, model list at `/models`, SSE streaming, * native tools, JSON mode. Reasoning models return their thinking in * `reasoning_content`, which the shared OpenAI helper already folds into a * block. * * TokenRouter is reachable on more than one host, so the base URL is an * override-able endpoint (same mechanism as Modal/Lightning) rather than a * hard constant. */ export declare const TOKENROUTER_DEFAULT_BASE_URL = "https://api.tokenrouter.com/v1"; export declare const tokenrouterProvider: LlmProvider;