From 67336a525c95347e3fa2297f66c2a299cc6a2942 Mon Sep 17 00:00:00 2001 From: Yige Date: Mon, 10 Aug 2026 20:36:56 +0800 Subject: [PATCH] fix: default core agent to smart flagship (#4) * fix: default core agent to smart flagship * fix: add smart core agent installation source --- agent.json | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/agent.json b/agent.json index 40255a9..cfdcd7d 100644 --- a/agent.json +++ b/agent.json @@ -1,8 +1,9 @@ { "name": "DesireCore", - "$schema": "http://desirecore/schemas/agent.json", + "$schema": "http://desirecore/schemas/agent-seed.json", "id": "7da73b7f-bb08-4e7b-a3cf-5d4af6e22c7f", - "version": "1.9.0", + "version": "1.9.2", + "requiredClientVersion": "10.0.100", "description": "系统中枢调度器,负责任务分发、Agent 编排与全局状态监控", "author": "DesireCore Team", "repository": { @@ -31,16 +32,20 @@ "accepts_messages": true, "max_concurrent_sessions": 3, "llm": { + "routingMode": "smart", + "smart": { + "tier": "flagship" + }, + "provider": "desirecore-cloud", + "providerId": "desirecore-cloud", + "model": "mimo-v2.5-pro", "maxRetryDelayMs": 32000, "thinkingBudgets": { "low": 1024, "medium": 4096, "high": 8192, "xhigh": 16384 - }, - "provider": "desirecore-cloud", - "model": "mimo-v2.5-pro", - "providerId": "desirecore-cloud" + } }, "env": { "enabled": true, @@ -48,4 +53,4 @@ "includeLocalTime": true, "includeSessionStart": true } -} \ No newline at end of file +}