fix: default core agent to smart flagship (#4)

* fix: default core agent to smart flagship

* fix: add smart core agent installation source
This commit is contained in:
2026-08-10 20:36:56 +08:00
committed by GitHub
parent 6b06c4f52b
commit 67336a525c

View File

@@ -1,8 +1,9 @@
{ {
"name": "DesireCore", "name": "DesireCore",
"$schema": "http://desirecore/schemas/agent.json", "$schema": "http://desirecore/schemas/agent-seed.json",
"id": "7da73b7f-bb08-4e7b-a3cf-5d4af6e22c7f", "id": "7da73b7f-bb08-4e7b-a3cf-5d4af6e22c7f",
"version": "1.9.0", "version": "1.9.2",
"requiredClientVersion": "10.0.100",
"description": "系统中枢调度器负责任务分发、Agent 编排与全局状态监控", "description": "系统中枢调度器负责任务分发、Agent 编排与全局状态监控",
"author": "DesireCore Team", "author": "DesireCore Team",
"repository": { "repository": {
@@ -31,16 +32,20 @@
"accepts_messages": true, "accepts_messages": true,
"max_concurrent_sessions": 3, "max_concurrent_sessions": 3,
"llm": { "llm": {
"routingMode": "smart",
"smart": {
"tier": "flagship"
},
"provider": "desirecore-cloud",
"providerId": "desirecore-cloud",
"model": "mimo-v2.5-pro",
"maxRetryDelayMs": 32000, "maxRetryDelayMs": 32000,
"thinkingBudgets": { "thinkingBudgets": {
"low": 1024, "low": 1024,
"medium": 4096, "medium": 4096,
"high": 8192, "high": 8192,
"xhigh": 16384 "xhigh": 16384
}, }
"provider": "desirecore-cloud",
"model": "mimo-v2.5-pro",
"providerId": "desirecore-cloud"
}, },
"env": { "env": {
"enabled": true, "enabled": true,
@@ -48,4 +53,4 @@
"includeLocalTime": true, "includeLocalTime": true,
"includeSessionStart": true "includeSessionStart": true
} }
} }