feat: update webui extensions, models, and agent config
Some checks failed
CI / build-check-test (push) Has been cancelled
npm audit / audit (push) Has been cancelled

This commit is contained in:
2026-06-10 21:45:53 +08:00
parent cf5edd6394
commit d51a055d78
64 changed files with 3238 additions and 1665 deletions

View File

@@ -426,7 +426,15 @@ Response:
Execute a shell command and add output to conversation context.
```json
{"type": "bash", "command": "ls -la"}
{"type": "bash", "command": "ls -la", "excludeFromContext": false}
```
Optional `excludeFromContext` (default `false`): when `true`, the command output is shown in the UI but excluded from the LLM context on the next prompt (equivalent to `!!cmd` in the TUI).
During execution, `bash_update` events stream partial stdout:
```json
{"type": "bash_update", "command": "ls -la", "partialOutput": "total 48\n"}
```
Response: