update pay ui
This commit is contained in:
@@ -25,6 +25,13 @@ export interface ModelConfig {
|
||||
* 包含所有可供用户选择的 AI 模型
|
||||
*/
|
||||
export const AVAILABLE_MODELS: ModelConfig[] = [
|
||||
{
|
||||
id: 'deepseek',
|
||||
name: 'DeepSeek',
|
||||
description: '高性能对话模型,响应迅速',
|
||||
icon: React.createElement(Zap, { className: 'w-5 h-5' }),
|
||||
color: 'blue',
|
||||
},
|
||||
{
|
||||
id: 'kimi-k2-thinking',
|
||||
name: 'Kimi K2 Thinking',
|
||||
@@ -37,7 +44,7 @@ export const AVAILABLE_MODELS: ModelConfig[] = [
|
||||
name: 'Kimi K2',
|
||||
description: '快速响应模型,适合简单查询',
|
||||
icon: React.createElement(Zap, { className: 'w-5 h-5' }),
|
||||
color: 'blue',
|
||||
color: 'cyan',
|
||||
},
|
||||
{
|
||||
id: 'deepmoney',
|
||||
@@ -51,7 +58,7 @@ export const AVAILABLE_MODELS: ModelConfig[] = [
|
||||
/**
|
||||
* 默认选中的模型 ID
|
||||
*/
|
||||
export const DEFAULT_MODEL_ID = 'kimi-k2-thinking';
|
||||
export const DEFAULT_MODEL_ID = 'deepseek';
|
||||
|
||||
/**
|
||||
* 根据 ID 查找模型配置
|
||||
|
||||
Reference in New Issue
Block a user