//#region extensions/crypto/src/commands/model-command.d.ts /** * /llm command — view or switch the LLM model at runtime. * * Usage: * /llm — show current model + available shortcuts * /llm opus — switch to Claude Opus 4.6 * /llm sonnet — switch to Claude Sonnet 4.6 * /llm gemini — switch to Gemini 3 Pro * /llm gpt — switch to GPT-5.2 * /llm — switch to any model * * Supports both direct Anthropic/OpenRouter keys and Bankr LLM Gateway. * When provider is "bankr", model IDs use Bankr format (e.g. bankr/claude-opus-4.6). */ declare const modelCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: (ctx: any) => Promise<{ text: string; }>; }; declare const llmShortcutCommands: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }[]; //#endregion export { llmShortcutCommands, modelCommand }; //# sourceMappingURL=model-command.d.mts.map