+2
-2
src/commands/utilities/ai.ts
+2
-2
src/commands/utilities/ai.ts
···
122
122
const usingCustomApi = !!apiKey;
123
123
const finalApiUrl = apiUrl || 'https://openrouter.ai/api/v1';
124
124
const finalApiKey = apiKey || process.env.OPENROUTER_API_KEY;
125
-
const finalModel = model || (usingCustomApi ? 'openai/gpt-4o-mini' : 'openai/gpt-oss-20b');
125
+
const finalModel = model || (usingCustomApi ? 'openai/gpt-4o-mini' : 'moonshotai/kimi-k2');
126
126
const usingDefaultKey = !usingCustomApi && !!process.env.OPENROUTER_API_KEY;
127
127
128
128
return {
···
172
172
.join('\n');
173
173
}
174
174
175
-
const currentModel = model || (usingDefaultKey ? 'openai/gpt-oss-20b (default)' : 'custom model');
175
+
const currentModel = model || (usingDefaultKey ? 'moonshotai/kimi-k2 (default)' : 'custom model');
176
176
177
177
const contextInfo = isServer
178
178
? `**CONTEXT:**