agentgui 1.0.340 → 1.0.342
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/server.js +9 -7
- package/static/index.html +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentgui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.342",
|
|
4
4
|
"description": "Multi-agent ACP client with real-time communication",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"fsbrowse": "^0.2.18",
|
|
31
31
|
"google-auth-library": "^10.5.0",
|
|
32
32
|
"onnxruntime-node": "1.21.0",
|
|
33
|
-
"webtalk": "^1.0.
|
|
33
|
+
"webtalk": "^1.0.22",
|
|
34
34
|
"ws": "^8.14.2"
|
|
35
35
|
},
|
|
36
36
|
"overrides": {
|
package/server.js
CHANGED
|
@@ -309,15 +309,17 @@ const AGENT_MODEL_COMMANDS = {
|
|
|
309
309
|
const AGENT_FALLBACK_MODELS = {
|
|
310
310
|
'claude-code': [
|
|
311
311
|
{ id: '', label: 'Default' },
|
|
312
|
-
{ id: 'claude-opus-4-5', label: 'Claude Opus 4.5' },
|
|
313
|
-
{ id: 'claude-sonnet-4-5', label: 'Claude Sonnet 4.5' },
|
|
314
|
-
{ id: 'claude-haiku-4-5', label: 'Claude Haiku 4.5' },
|
|
315
|
-
{ id: 'claude-opus-4-5-20251001', label: 'Claude Opus 4.5 (2025-10-01)' },
|
|
316
|
-
{ id: 'claude-sonnet-4-5-20251001', label: 'Claude Sonnet 4.5 (2025-10-01)' },
|
|
317
|
-
{ id: 'claude-haiku-4-5-20251001', label: 'Claude Haiku 4.5 (2025-10-01)' },
|
|
318
312
|
{ id: 'claude-opus-4-6', label: 'Claude Opus 4.6' },
|
|
319
313
|
{ id: 'claude-sonnet-4-6', label: 'Claude Sonnet 4.6' },
|
|
320
|
-
{ id: 'claude-haiku-4-
|
|
314
|
+
{ id: 'claude-haiku-4-5', label: 'Claude Haiku 4.5' },
|
|
315
|
+
{ id: 'claude-haiku-4-5-20251001', label: 'Claude Haiku 4.5 (2025-10-01)' },
|
|
316
|
+
{ id: 'claude-opus-4-5', label: 'Claude Opus 4.5' },
|
|
317
|
+
{ id: 'claude-opus-4-5-20251101', label: 'Claude Opus 4.5 (2025-11-01)' },
|
|
318
|
+
{ id: 'claude-sonnet-4-5', label: 'Claude Sonnet 4.5' },
|
|
319
|
+
{ id: 'claude-sonnet-4-5-20250929', label: 'Claude Sonnet 4.5 (2025-09-29)' },
|
|
320
|
+
{ id: 'claude-opus-4-1', label: 'Claude Opus 4.1' },
|
|
321
|
+
{ id: 'claude-sonnet-4-0', label: 'Claude Sonnet 4' },
|
|
322
|
+
{ id: 'claude-opus-4-0', label: 'Claude Opus 4' },
|
|
321
323
|
],
|
|
322
324
|
};
|
|
323
325
|
|
package/static/index.html
CHANGED
|
@@ -3050,8 +3050,6 @@
|
|
|
3050
3050
|
<iframe id="fileBrowserIframe" class="file-browser-iframe"></iframe>
|
|
3051
3051
|
</div>
|
|
3052
3052
|
|
|
3053
|
-
</div>
|
|
3054
|
-
|
|
3055
3053
|
<!-- Terminal output view -->
|
|
3056
3054
|
<div id="terminalContainer" class="terminal-container" style="display:none;">
|
|
3057
3055
|
<div id="terminalOutput" class="terminal-output"></div>
|