Hermes Agent backup - 2026-06-03 23:32:47
Browse files- config/.env +3 -1
- config/config.yaml +36 -36
- logs/agent.log +36 -0
- logs/gateway-exit-diag.log +1 -0
- logs/gateway.log +12 -0
- metadata.json +1 -1
config/.env
CHANGED
|
@@ -2,6 +2,8 @@ API_SERVER_ENABLED=true
|
|
| 2 |
API_SERVER_HOST=127.0.0.1
|
| 3 |
API_SERVER_PORT=8642
|
| 4 |
GATEWAY_ALLOW_ALL_USERS=true
|
| 5 |
-
HERMES_MODEL=
|
|
|
|
|
|
|
| 6 |
NVIDIA_API_KEY=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
|
| 7 |
NVIDIA_BASE_URL=https://integrate.api.nvidia.com/v1
|
|
|
|
| 2 |
API_SERVER_HOST=127.0.0.1
|
| 3 |
API_SERVER_PORT=8642
|
| 4 |
GATEWAY_ALLOW_ALL_USERS=true
|
| 5 |
+
HERMES_MODEL=deepseek-ai/deepseek-v4-pro
|
| 6 |
+
MODEL_NAME=deepseek-ai/deepseek-v4-pro
|
| 7 |
+
MODEL_PROVIDER=nvidia
|
| 8 |
NVIDIA_API_KEY=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
|
| 9 |
NVIDIA_BASE_URL=https://integrate.api.nvidia.com/v1
|
config/config.yaml
CHANGED
|
@@ -1,19 +1,33 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
| 12 |
enabled: true
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
compression:
|
| 15 |
enabled: true
|
| 16 |
threshold: 0.5
|
|
|
|
|
|
|
|
|
|
| 17 |
auxiliary:
|
| 18 |
vision:
|
| 19 |
provider: nvidia
|
|
@@ -52,35 +66,21 @@ auxiliary:
|
|
| 52 |
provider: auto
|
| 53 |
model: ''
|
| 54 |
timeout: 30
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
delegation:
|
| 61 |
model: ''
|
| 62 |
provider: nvidia
|
| 63 |
max_iterations: 50
|
| 64 |
reasoning_effort: medium
|
| 65 |
-
model:
|
| 66 |
-
default: moonshotai/kimi-k2-thinking
|
| 67 |
-
provider: nvidia
|
| 68 |
-
base_url: https://integrate.api.nvidia.com/v1
|
| 69 |
-
custom_providers:
|
| 70 |
-
- name: nvidia119
|
| 71 |
-
base_url: https://integrate.api.nvidia.com/v1
|
| 72 |
-
api_key: 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
|
| 73 |
-
model: deepseek-ai/deepseek-v4-pro
|
| 74 |
-
models:
|
| 75 |
-
deepseek-ai/deepseek-v4-pro:
|
| 76 |
-
context_length: 1000000
|
| 77 |
-
memory:
|
| 78 |
-
enabled: true
|
| 79 |
-
provider: local
|
| 80 |
-
api_server:
|
| 81 |
-
enabled: true
|
| 82 |
-
port: 8642
|
| 83 |
-
host: 127.0.0.1
|
| 84 |
display:
|
| 85 |
skin: default
|
| 86 |
show_tool_progress: true
|
|
|
|
| 1 |
+
custom_providers:
|
| 2 |
+
- name: nvidia119
|
| 3 |
+
base_url: https://integrate.api.nvidia.com/v1
|
| 4 |
+
api_key: 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
|
| 5 |
+
model: deepseek-ai/deepseek-v4-pro
|
| 6 |
+
models:
|
| 7 |
+
deepseek-ai/deepseek-v4-pro:
|
| 8 |
+
context_length: 1000000
|
| 9 |
+
model:
|
| 10 |
+
default: deepseek-ai/deepseek-v4-pro
|
| 11 |
+
provider: nvidia
|
| 12 |
+
base_url: https://integrate.api.nvidia.com/v1
|
| 13 |
+
api_server:
|
| 14 |
enabled: true
|
| 15 |
+
port: 8642
|
| 16 |
+
host: 127.0.0.1
|
| 17 |
+
memory:
|
| 18 |
+
enabled: true
|
| 19 |
+
provider: local
|
| 20 |
+
agent:
|
| 21 |
+
max_iterations: 50
|
| 22 |
+
approval_mode: ask
|
| 23 |
+
dangerous_command_approval: ask
|
| 24 |
+
gateway_timeout: 300
|
| 25 |
compression:
|
| 26 |
enabled: true
|
| 27 |
threshold: 0.5
|
| 28 |
+
cron:
|
| 29 |
+
enabled: true
|
| 30 |
+
tick_interval: 60
|
| 31 |
auxiliary:
|
| 32 |
vision:
|
| 33 |
provider: nvidia
|
|
|
|
| 66 |
provider: auto
|
| 67 |
model: ''
|
| 68 |
timeout: 30
|
| 69 |
+
terminal:
|
| 70 |
+
backend: local
|
| 71 |
+
timeout: 300
|
| 72 |
+
shell: /bin/bash
|
| 73 |
+
env_passthrough:
|
| 74 |
+
- GEMINI_API_KEY
|
| 75 |
+
- GOOGLE_API_KEY
|
| 76 |
+
- SILICONFLOW_API_KEY
|
| 77 |
+
- GOOGLE_IMAGE_MODEL
|
| 78 |
+
- GOOGLE_BASE_URL
|
| 79 |
delegation:
|
| 80 |
model: ''
|
| 81 |
provider: nvidia
|
| 82 |
max_iterations: 50
|
| 83 |
reasoning_effort: medium
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
display:
|
| 85 |
skin: default
|
| 86 |
show_tool_progress: true
|
logs/agent.log
CHANGED
|
@@ -716,3 +716,39 @@
|
|
| 716 |
2026-06-03 23:28:09,335 INFO gateway.run: Press Ctrl+C to stop
|
| 717 |
2026-06-03 23:28:09,337 INFO gateway.run: Cron ticker started (interval=60s)
|
| 718 |
2026-06-03 23:28:14,349 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 716 |
2026-06-03 23:28:09,335 INFO gateway.run: Press Ctrl+C to stop
|
| 717 |
2026-06-03 23:28:09,337 INFO gateway.run: Cron ticker started (interval=60s)
|
| 718 |
2026-06-03 23:28:14,349 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
|
| 719 |
+
2026-06-03 23:31:51,325 INFO hermes_cli.plugins: Plugin 'browser-browser-use' registered browser provider: browser-use
|
| 720 |
+
2026-06-03 23:31:51,327 INFO hermes_cli.plugins: Plugin 'browser-browserbase' registered browser provider: browserbase
|
| 721 |
+
2026-06-03 23:31:51,328 INFO hermes_cli.plugins: Plugin 'browser-firecrawl' registered browser provider: firecrawl
|
| 722 |
+
2026-06-03 23:31:51,423 INFO hermes_cli.plugins: Plugin 'fal' registered image_gen provider: fal
|
| 723 |
+
2026-06-03 23:31:51,424 INFO hermes_cli.plugins: Plugin 'krea' registered image_gen provider: krea
|
| 724 |
+
2026-06-03 23:31:51,424 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
|
| 725 |
+
2026-06-03 23:31:51,425 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
|
| 726 |
+
2026-06-03 23:31:51,428 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
|
| 727 |
+
2026-06-03 23:31:51,453 INFO hermes_cli.plugins: Plugin 'fal' registered video_gen provider: fal
|
| 728 |
+
2026-06-03 23:31:51,454 INFO hermes_cli.plugins: Plugin 'xai' registered video_gen provider: xai
|
| 729 |
+
2026-06-03 23:31:51,456 INFO hermes_cli.plugins: Plugin 'web-brave-free' registered web provider: brave-free
|
| 730 |
+
2026-06-03 23:31:51,457 INFO hermes_cli.plugins: Plugin 'web-ddgs' registered web provider: ddgs
|
| 731 |
+
2026-06-03 23:31:51,458 INFO hermes_cli.plugins: Plugin 'web-exa' registered web provider: exa
|
| 732 |
+
2026-06-03 23:31:51,460 INFO hermes_cli.plugins: Plugin 'web-firecrawl' registered web provider: firecrawl
|
| 733 |
+
2026-06-03 23:31:51,461 INFO hermes_cli.plugins: Plugin 'web-parallel' registered web provider: parallel
|
| 734 |
+
2026-06-03 23:31:51,462 INFO hermes_cli.plugins: Plugin 'web-searxng' registered web provider: searxng
|
| 735 |
+
2026-06-03 23:31:51,464 INFO hermes_cli.plugins: Plugin 'web-tavily' registered web provider: tavily
|
| 736 |
+
2026-06-03 23:31:51,467 INFO hermes_cli.plugins: Plugin 'web-xai' registered web provider: xai
|
| 737 |
+
2026-06-03 23:31:51,700 INFO hermes_cli.plugins: Plugin discovery complete: 33 found, 28 enabled
|
| 738 |
+
2026-06-03 23:31:52,144 INFO tools.lazy_deps: Lazy-installing discord.py[voice]==2.7.1 brotlicffi==1.2.0.1 for feature 'platform.discord'
|
| 739 |
+
2026-06-03 23:31:58,984 INFO tools.tirith_security: tirith not found — downloading latest release for x86_64-unknown-linux-gnu...
|
| 740 |
+
2026-06-03 23:31:59,571 INFO tools.tirith_security: cosign not on PATH — installing tirith with SHA-256 verification only (install cosign for full supply chain verification)
|
| 741 |
+
2026-06-03 23:32:00,257 INFO gateway.run: Starting Hermes Gateway...
|
| 742 |
+
2026-06-03 23:32:00,257 INFO gateway.run: Session storage: /data/.hermes/sessions
|
| 743 |
+
2026-06-03 23:32:00,259 INFO gateway.run: Agent budget: max_iterations=90 (agent.max_turns from config.yaml, or HERMES_MAX_ITERATIONS from .env, or default 90)
|
| 744 |
+
2026-06-03 23:32:00,259 INFO gateway.run: Secret redaction: ENABLED (tool output, logs, and chat responses are scrubbed before delivery)
|
| 745 |
+
2026-06-03 23:32:00,362 INFO gateway.run: Connecting to api_server...
|
| 746 |
+
2026-06-03 23:32:00,384 INFO gateway.platforms.api_server: [Api_Server] API server listening on http://127.0.0.1:8642 (model: hermes-agent)
|
| 747 |
+
2026-06-03 23:32:00,394 INFO gateway.run: ✓ api_server connected
|
| 748 |
+
2026-06-03 23:32:00,404 INFO gateway.run: Gateway running with 1 platform(s)
|
| 749 |
+
2026-06-03 23:32:00,412 INFO gateway.run: Channel directory built: 0 target(s)
|
| 750 |
+
2026-06-03 23:32:00,455 INFO tools.tirith_security: tirith installed to /data/.hermes/bin/tirith (SHA-256 only)
|
| 751 |
+
2026-06-03 23:32:00,705 INFO aiohttp.access: 127.0.0.1 [03/Jun/2026:23:32:00 +0000] "GET /health HTTP/1.1" 200 505 "-" "curl/8.14.1"
|
| 752 |
+
2026-06-03 23:32:01,414 INFO gateway.run: Press Ctrl+C to stop
|
| 753 |
+
2026-06-03 23:32:01,418 INFO gateway.run: Cron ticker started (interval=60s)
|
| 754 |
+
2026-06-03 23:32:06,447 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
|
logs/gateway-exit-diag.log
CHANGED
|
@@ -13,3 +13,4 @@
|
|
| 13 |
{"ts": "2026-06-03T23:18:58.116826+00:00", "tag": "gateway.start", "pid": 76, "python": "3.11.15", "platform": "linux", "replace": true, "argv": ["/usr/local/bin/hermes", "gateway", "run", "--replace"], "stdin_is_tty": false, "absorb_windows_console_controls": false}
|
| 14 |
{"ts": "2026-06-03T23:22:36.648691+00:00", "tag": "gateway.start", "pid": 78, "python": "3.11.15", "platform": "linux", "replace": true, "argv": ["/usr/local/bin/hermes", "gateway", "run", "--replace"], "stdin_is_tty": false, "absorb_windows_console_controls": false}
|
| 15 |
{"ts": "2026-06-03T23:28:03.547263+00:00", "tag": "gateway.start", "pid": 77, "python": "3.11.15", "platform": "linux", "replace": true, "argv": ["/usr/local/bin/hermes", "gateway", "run", "--replace"], "stdin_is_tty": false, "absorb_windows_console_controls": false}
|
|
|
|
|
|
| 13 |
{"ts": "2026-06-03T23:18:58.116826+00:00", "tag": "gateway.start", "pid": 76, "python": "3.11.15", "platform": "linux", "replace": true, "argv": ["/usr/local/bin/hermes", "gateway", "run", "--replace"], "stdin_is_tty": false, "absorb_windows_console_controls": false}
|
| 14 |
{"ts": "2026-06-03T23:22:36.648691+00:00", "tag": "gateway.start", "pid": 78, "python": "3.11.15", "platform": "linux", "replace": true, "argv": ["/usr/local/bin/hermes", "gateway", "run", "--replace"], "stdin_is_tty": false, "absorb_windows_console_controls": false}
|
| 15 |
{"ts": "2026-06-03T23:28:03.547263+00:00", "tag": "gateway.start", "pid": 77, "python": "3.11.15", "platform": "linux", "replace": true, "argv": ["/usr/local/bin/hermes", "gateway", "run", "--replace"], "stdin_is_tty": false, "absorb_windows_console_controls": false}
|
| 16 |
+
{"ts": "2026-06-03T23:31:51.969240+00:00", "tag": "gateway.start", "pid": 79, "python": "3.11.15", "platform": "linux", "replace": true, "argv": ["/usr/local/bin/hermes", "gateway", "run", "--replace"], "stdin_is_tty": false, "absorb_windows_console_controls": false}
|
logs/gateway.log
CHANGED
|
@@ -370,3 +370,15 @@
|
|
| 370 |
2026-06-03 23:28:09,335 INFO gateway.run: Press Ctrl+C to stop
|
| 371 |
2026-06-03 23:28:09,337 INFO gateway.run: Cron ticker started (interval=60s)
|
| 372 |
2026-06-03 23:28:14,349 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 370 |
2026-06-03 23:28:09,335 INFO gateway.run: Press Ctrl+C to stop
|
| 371 |
2026-06-03 23:28:09,337 INFO gateway.run: Cron ticker started (interval=60s)
|
| 372 |
2026-06-03 23:28:14,349 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
|
| 373 |
+
2026-06-03 23:32:00,257 INFO gateway.run: Starting Hermes Gateway...
|
| 374 |
+
2026-06-03 23:32:00,257 INFO gateway.run: Session storage: /data/.hermes/sessions
|
| 375 |
+
2026-06-03 23:32:00,259 INFO gateway.run: Agent budget: max_iterations=90 (agent.max_turns from config.yaml, or HERMES_MAX_ITERATIONS from .env, or default 90)
|
| 376 |
+
2026-06-03 23:32:00,259 INFO gateway.run: Secret redaction: ENABLED (tool output, logs, and chat responses are scrubbed before delivery)
|
| 377 |
+
2026-06-03 23:32:00,362 INFO gateway.run: Connecting to api_server...
|
| 378 |
+
2026-06-03 23:32:00,384 INFO gateway.platforms.api_server: [Api_Server] API server listening on http://127.0.0.1:8642 (model: hermes-agent)
|
| 379 |
+
2026-06-03 23:32:00,394 INFO gateway.run: ✓ api_server connected
|
| 380 |
+
2026-06-03 23:32:00,404 INFO gateway.run: Gateway running with 1 platform(s)
|
| 381 |
+
2026-06-03 23:32:00,412 INFO gateway.run: Channel directory built: 0 target(s)
|
| 382 |
+
2026-06-03 23:32:01,414 INFO gateway.run: Press Ctrl+C to stop
|
| 383 |
+
2026-06-03 23:32:01,418 INFO gateway.run: Cron ticker started (interval=60s)
|
| 384 |
+
2026-06-03 23:32:06,447 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
|
metadata.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"timestamp": "2026-06-03T23:32:
|
| 3 |
"version": "0.10.0",
|
| 4 |
"hermes_home": "/data/.hermes"
|
| 5 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"timestamp": "2026-06-03T23:32:47.980559",
|
| 3 |
"version": "0.10.0",
|
| 4 |
"hermes_home": "/data/.hermes"
|
| 5 |
}
|