fix(docs): add missing code block language specifiers

This commit is contained in:
Jr-kenny
2026-02-28 02:04:38 +01:00
parent 518826e70c
commit 609fc6d080
3 changed files with 7 additions and 7 deletions

View File

@@ -132,7 +132,7 @@ You need at least one way to connect to an LLM. Use `hermes model` to switch pro
All your settings are stored in `~/.hermes/` for easy access:
```
```text
~/.hermes/
├── config.yaml # Settings (model, terminal, TTS, compression, etc.)
├── .env # API keys and secrets
@@ -863,7 +863,7 @@ code_execution:
The `delegate_task` tool spawns child AIAgent instances with isolated context, restricted toolsets, and their own terminal sessions. Each child gets a fresh conversation and works independently -- only its final summary enters the parent's context.
**Single task:**
```
```python
delegate_task(goal="Debug why tests fail", context="Error: assertion in test_foo.py line 42", toolsets=["terminal", "file"])
```