update watchlist
This commit is contained in:
@@ -58,7 +58,7 @@ export const AVAILABLE_MODELS: ModelConfig[] = [
|
||||
/**
|
||||
* 默认选中的模型 ID
|
||||
*/
|
||||
export const DEFAULT_MODEL_ID = 'deepseek';
|
||||
export const DEFAULT_MODEL_ID = 'deepmoney';
|
||||
|
||||
/**
|
||||
* 根据 ID 查找模型配置
|
||||
|
||||
@@ -468,10 +468,22 @@ export const TOOL_CATEGORIES: Record<ToolCategory, MCPTool[]> = {
|
||||
};
|
||||
|
||||
/**
|
||||
* 默认选中的工具 ID 列表
|
||||
* 所有工具在页面初始化时自动选中
|
||||
* 量价相关工具 ID(默认不选中)
|
||||
* 包括 QUANT_VOLUME 类别的工具
|
||||
*/
|
||||
export const DEFAULT_SELECTED_TOOLS: string[] = MCP_TOOLS.map((tool) => tool.id);
|
||||
const VOLUME_PRICE_TOOL_IDS = [
|
||||
'analyze_market_heat', // 市场热度分析
|
||||
'check_volume_price_divergence', // 量价背离检测
|
||||
'analyze_obv_trend', // OBV能量潮
|
||||
];
|
||||
|
||||
/**
|
||||
* 默认选中的工具 ID 列表
|
||||
* 排除量价相关工具(用户可手动选择启用)
|
||||
*/
|
||||
export const DEFAULT_SELECTED_TOOLS: string[] = MCP_TOOLS
|
||||
.filter((tool) => !VOLUME_PRICE_TOOL_IDS.includes(tool.id))
|
||||
.map((tool) => tool.id);
|
||||
|
||||
/**
|
||||
* 根据 ID 查找工具配置
|
||||
|
||||
Reference in New Issue
Block a user