mirror of
https://github.com/tiennm99/ccs.git
synced 2026-09-02 14:19:56 +00:00
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:
@@ -666,6 +666,7 @@ export const DEFAULT_IMAGE_ANALYSIS_CONFIG: ImageAnalysisConfig = {
|
|||||||
// 'vision-model' is a generic placeholder - users can override via config.yaml
|
// 'vision-model' is a generic placeholder - users can override via config.yaml
|
||||||
qwen: 'vision-model',
|
qwen: 'vision-model',
|
||||||
iflow: 'qwen3-vl-plus',
|
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' },
|
iflow: { name: 'iFlow', description: 'iFlow AI models' },
|
||||||
kiro: { name: 'Kiro (AWS)', description: 'AWS CodeWhisperer models' },
|
kiro: { name: 'Kiro (AWS)', description: 'AWS CodeWhisperer models' },
|
||||||
ghcp: { name: 'GitHub Copilot (OAuth)', description: 'GitHub Copilot via OAuth' },
|
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 */
|
/** Wizard display order - most recommended first */
|
||||||
@@ -26,6 +27,7 @@ const WIZARD_PROVIDER_ORDER: CLIProxyProvider[] = [
|
|||||||
'gemini',
|
'gemini',
|
||||||
'codex',
|
'codex',
|
||||||
'qwen',
|
'qwen',
|
||||||
|
'kimi',
|
||||||
'iflow',
|
'iflow',
|
||||||
'kiro',
|
'kiro',
|
||||||
'ghcp',
|
'ghcp',
|
||||||
|
|||||||
Reference in New Issue
Block a user