feat: harden agent tooling compatibility

This commit is contained in:
lutc5
2026-04-30 02:39:38 +08:00
parent 70803e5c76
commit 8c2df92ce7
14 changed files with 991 additions and 52 deletions

View File

@@ -513,6 +513,7 @@ func defaultConfig() service.Config {
Transport: lingmaipc.TransportAuto,
Cwd: defaultCwd(),
Mode: "agent",
Model: "MiniMax-M2.7",
ShellType: defaultShellType(),
SessionMode: service.SessionModeAuto,
Timeout: 120 * time.Second,

View File

@@ -222,7 +222,7 @@ onUnmounted(() => {
<span class="status-dot" :class="{ running: status.running }"></span>
<div>
<strong>{{ status.running ? 'Proxy Running' : 'Proxy Stopped' }}</strong>
<small>v1.2.2</small>
<small>v1.3.0</small>
</div>
</div>
</aside>

View File

@@ -383,7 +383,7 @@ onUnmounted(() => {
<td>{{ request.time }}</td>
<td>{{ request.method }}</td>
<td>{{ request.path }}</td>
<td>{{ request.model || 'Qwen3-Coder' }}</td>
<td>{{ request.model || status.model || 'MiniMax-M2.7' }}</td>
<td><span class="status-chip" :class="statusClass(request.statusCode)">{{ request.statusCode }}</span></td>
<td>{{ request.duration }}</td>
<td>{{ request.size || '2.1 KB' }}</td>

View File

@@ -88,7 +88,7 @@ onMounted(refresh)
<div class="panel-header">
<div>
<h2>可用模型</h2>
<p>推荐 Claude Code / Cline 优先选择 Qwen3-Coder</p>
<p>推荐 OpenClaw / Hermes / Claude Code / Cline 优先选择 MiniMax-M2.7</p>
</div>
<input v-model="query" class="search-input" type="search" placeholder="搜索模型" style="max-width: 260px" />
</div>

View File

@@ -9,5 +9,8 @@
"author": {
"name": "lutc5",
"email": "lutc5@asiainfo.com"
},
"info": {
"productVersion": "1.3.0"
}
}