7c92729c3f
- models.ts 移除 GPT/Claude/Gemini/Llama,仅保留 domestic 模型 - DEFAULT_MODEL 改为 deepseek-v4-flash(原为 general) - ModelSelector 改为从 /sandbox/models 获取可用模型列表 Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
15 lines
559 B
TypeScript
Executable File
15 lines
559 B
TypeScript
Executable File
export interface ModelOption {
|
|
id: string;
|
|
label: string;
|
|
provider: string;
|
|
desc: string;
|
|
}
|
|
|
|
/** 沙箱可选模型 — 仅国内已备案大模型 */
|
|
export const AVAILABLE_MODELS: ModelOption[] = [
|
|
{ id: 'deepseek-v4-flash', label: 'DeepSeek V4 Flash', provider: '硅基流动', desc: '高速推理,代码生成能力强,价格极低' },
|
|
{ id: 'sensenova-6.7-flash-lite', label: 'SenseNova 6.7 Flash Lite', provider: '商汤科技', desc: '轻量快速,日常对话与文本处理' },
|
|
];
|
|
|
|
export const DEFAULT_MODEL = 'deepseek-v4-flash';
|