fix(cliproxy): add kimi to wizard constants and image analysis config

- add kimi entry to PROVIDER_INFO and WIZARD_PROVIDER_ORDER in setup wizard
- add kimi to DEFAULT_IMAGE_ANALYSIS_CONFIG.provider_models
This commit is contained in:
Tam Nhu Tran
2026-02-17 17:16:52 +07:00
parent 672813beba
commit ddd5b159d2
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -666,6 +666,7 @@ export const DEFAULT_IMAGE_ANALYSIS_CONFIG: ImageAnalysisConfig = {
// 'vision-model' is a generic placeholder - users can override via config.yaml
qwen: 'vision-model',
iflow: 'qwen3-vl-plus',
kimi: 'vision-model',
},
};
@@ -17,6 +17,7 @@ const PROVIDER_INFO: Record<CLIProxyProvider, { name: string; description: strin
iflow: { name: 'iFlow', description: 'iFlow AI models' },
kiro: { name: 'Kiro (AWS)', description: 'AWS CodeWhisperer models' },
ghcp: { name: 'GitHub Copilot (OAuth)', description: 'GitHub Copilot via OAuth' },
kimi: { name: 'Kimi (Moonshot)', description: 'Moonshot AI K2/K2.5 models' },
};
/** Wizard display order - most recommended first */
@@ -26,6 +27,7 @@ const WIZARD_PROVIDER_ORDER: CLIProxyProvider[] = [
'gemini',
'codex',
'qwen',
'kimi',
'iflow',
'kiro',
'ghcp',