Hermes Agent backup - 2026-06-03 22:56:10
Browse files- config/config.yaml +46 -45
- logs/agent.log +41 -0
- logs/errors.log +5 -0
- logs/gateway-exit-diag.log +1 -0
- logs/gateway.log +18 -0
- metadata.json +1 -1
config/config.yaml
CHANGED
|
@@ -1,87 +1,88 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
max_iterations: 50
|
| 5 |
-
reasoning_effort: medium
|
| 6 |
display:
|
| 7 |
skin: default
|
| 8 |
show_tool_progress: true
|
| 9 |
show_resume: true
|
| 10 |
spinner: dots
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
provider:
|
|
|
|
| 14 |
cron:
|
| 15 |
enabled: true
|
| 16 |
tick_interval: 60
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
terminal:
|
| 18 |
backend: local
|
| 19 |
timeout: 300
|
| 20 |
shell: /bin/bash
|
| 21 |
env_passthrough:
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
model:
|
| 28 |
-
default: deepseek-ai/deepseek-v4-pro
|
| 29 |
-
provider: custom:nvidia119
|
| 30 |
-
api_server:
|
| 31 |
-
enabled: true
|
| 32 |
-
port: 8642
|
| 33 |
-
host: 127.0.0.1
|
| 34 |
-
compression:
|
| 35 |
-
enabled: true
|
| 36 |
-
threshold: 0.5
|
| 37 |
-
agent:
|
| 38 |
-
max_iterations: 50
|
| 39 |
-
approval_mode: ask
|
| 40 |
-
dangerous_command_approval: ask
|
| 41 |
-
gateway_timeout: 300
|
| 42 |
auxiliary:
|
| 43 |
vision:
|
| 44 |
provider: nvidia
|
| 45 |
-
model:
|
| 46 |
timeout: 120
|
| 47 |
download_timeout: 30
|
| 48 |
web_extract:
|
| 49 |
provider: nvidia
|
| 50 |
-
model:
|
| 51 |
timeout: 360
|
| 52 |
compression:
|
| 53 |
provider: nvidia
|
| 54 |
-
model:
|
| 55 |
timeout: 120
|
| 56 |
title_generation:
|
| 57 |
provider: nvidia
|
| 58 |
-
model:
|
| 59 |
timeout: 30
|
| 60 |
session_search:
|
| 61 |
provider: auto
|
| 62 |
-
model:
|
| 63 |
timeout: 30
|
| 64 |
skills_hub:
|
| 65 |
provider: auto
|
| 66 |
-
model:
|
| 67 |
timeout: 30
|
| 68 |
approval:
|
| 69 |
provider: auto
|
| 70 |
-
model:
|
| 71 |
timeout: 30
|
| 72 |
mcp:
|
| 73 |
provider: auto
|
| 74 |
-
model:
|
| 75 |
timeout: 30
|
| 76 |
flush_memories:
|
| 77 |
provider: auto
|
| 78 |
-
model:
|
| 79 |
timeout: 30
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
compression:
|
| 2 |
+
enabled: true
|
| 3 |
+
threshold: 0.5
|
|
|
|
|
|
|
| 4 |
display:
|
| 5 |
skin: default
|
| 6 |
show_tool_progress: true
|
| 7 |
show_resume: true
|
| 8 |
spinner: dots
|
| 9 |
+
model:
|
| 10 |
+
default: moonshotai/kimi-k2-thinking
|
| 11 |
+
provider: nvidia
|
| 12 |
+
base_url: https://integrate.api.nvidia.com/v1
|
| 13 |
cron:
|
| 14 |
enabled: true
|
| 15 |
tick_interval: 60
|
| 16 |
+
custom_providers:
|
| 17 |
+
- name: nvidia119
|
| 18 |
+
base_url: https://integrate.api.nvidia.com/v1
|
| 19 |
+
api_key: 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
|
| 20 |
+
model: deepseek-ai/deepseek-v4-pro
|
| 21 |
+
models:
|
| 22 |
+
deepseek-ai/deepseek-v4-pro:
|
| 23 |
+
context_length: 1000000
|
| 24 |
terminal:
|
| 25 |
backend: local
|
| 26 |
timeout: 300
|
| 27 |
shell: /bin/bash
|
| 28 |
env_passthrough:
|
| 29 |
+
- GEMINI_API_KEY
|
| 30 |
+
- GOOGLE_API_KEY
|
| 31 |
+
- SILICONFLOW_API_KEY
|
| 32 |
+
- GOOGLE_IMAGE_MODEL
|
| 33 |
+
- GOOGLE_BASE_URL
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
auxiliary:
|
| 35 |
vision:
|
| 36 |
provider: nvidia
|
| 37 |
+
model: ''
|
| 38 |
timeout: 120
|
| 39 |
download_timeout: 30
|
| 40 |
web_extract:
|
| 41 |
provider: nvidia
|
| 42 |
+
model: ''
|
| 43 |
timeout: 360
|
| 44 |
compression:
|
| 45 |
provider: nvidia
|
| 46 |
+
model: ''
|
| 47 |
timeout: 120
|
| 48 |
title_generation:
|
| 49 |
provider: nvidia
|
| 50 |
+
model: ''
|
| 51 |
timeout: 30
|
| 52 |
session_search:
|
| 53 |
provider: auto
|
| 54 |
+
model: ''
|
| 55 |
timeout: 30
|
| 56 |
skills_hub:
|
| 57 |
provider: auto
|
| 58 |
+
model: ''
|
| 59 |
timeout: 30
|
| 60 |
approval:
|
| 61 |
provider: auto
|
| 62 |
+
model: ''
|
| 63 |
timeout: 30
|
| 64 |
mcp:
|
| 65 |
provider: auto
|
| 66 |
+
model: ''
|
| 67 |
timeout: 30
|
| 68 |
flush_memories:
|
| 69 |
provider: auto
|
| 70 |
+
model: ''
|
| 71 |
timeout: 30
|
| 72 |
+
memory:
|
| 73 |
+
enabled: true
|
| 74 |
+
provider: local
|
| 75 |
+
api_server:
|
| 76 |
+
enabled: true
|
| 77 |
+
port: 8642
|
| 78 |
+
host: 127.0.0.1
|
| 79 |
+
delegation:
|
| 80 |
+
model: ''
|
| 81 |
+
provider: nvidia
|
| 82 |
+
max_iterations: 50
|
| 83 |
+
reasoning_effort: medium
|
| 84 |
+
agent:
|
| 85 |
+
max_iterations: 50
|
| 86 |
+
approval_mode: ask
|
| 87 |
+
dangerous_command_approval: ask
|
| 88 |
+
gateway_timeout: 300
|
logs/agent.log
CHANGED
|
@@ -489,3 +489,44 @@
|
|
| 489 |
2026-06-03 22:51:36,351 INFO gateway.run: Reconnecting api_server (attempt 5)...
|
| 490 |
2026-06-03 22:51:36,352 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 491 |
2026-06-03 22:51:36,360 INFO gateway.run: Reconnect api_server failed, next retry in 300s
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 489 |
2026-06-03 22:51:36,351 INFO gateway.run: Reconnecting api_server (attempt 5)...
|
| 490 |
2026-06-03 22:51:36,352 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 491 |
2026-06-03 22:51:36,360 INFO gateway.run: Reconnect api_server failed, next retry in 300s
|
| 492 |
+
2026-06-03 22:55:12,741 INFO hermes_cli.plugins: Plugin 'browser-browser-use' registered browser provider: browser-use
|
| 493 |
+
2026-06-03 22:55:12,742 INFO hermes_cli.plugins: Plugin 'browser-browserbase' registered browser provider: browserbase
|
| 494 |
+
2026-06-03 22:55:12,744 INFO hermes_cli.plugins: Plugin 'browser-firecrawl' registered browser provider: firecrawl
|
| 495 |
+
2026-06-03 22:55:12,796 INFO hermes_cli.plugins: Plugin 'fal' registered image_gen provider: fal
|
| 496 |
+
2026-06-03 22:55:12,796 INFO hermes_cli.plugins: Plugin 'krea' registered image_gen provider: krea
|
| 497 |
+
2026-06-03 22:55:12,797 INFO hermes_cli.plugins: Plugin 'openai' registered image_gen provider: openai
|
| 498 |
+
2026-06-03 22:55:12,797 INFO hermes_cli.plugins: Plugin 'openai-codex' registered image_gen provider: openai-codex
|
| 499 |
+
2026-06-03 22:55:12,798 INFO hermes_cli.plugins: Plugin 'xai' registered image_gen provider: xai
|
| 500 |
+
2026-06-03 22:55:12,814 INFO hermes_cli.plugins: Plugin 'fal' registered video_gen provider: fal
|
| 501 |
+
2026-06-03 22:55:12,815 INFO hermes_cli.plugins: Plugin 'xai' registered video_gen provider: xai
|
| 502 |
+
2026-06-03 22:55:12,817 INFO hermes_cli.plugins: Plugin 'web-brave-free' registered web provider: brave-free
|
| 503 |
+
2026-06-03 22:55:12,819 INFO hermes_cli.plugins: Plugin 'web-ddgs' registered web provider: ddgs
|
| 504 |
+
2026-06-03 22:55:12,821 INFO hermes_cli.plugins: Plugin 'web-exa' registered web provider: exa
|
| 505 |
+
2026-06-03 22:55:12,823 INFO hermes_cli.plugins: Plugin 'web-firecrawl' registered web provider: firecrawl
|
| 506 |
+
2026-06-03 22:55:12,825 INFO hermes_cli.plugins: Plugin 'web-parallel' registered web provider: parallel
|
| 507 |
+
2026-06-03 22:55:12,827 INFO hermes_cli.plugins: Plugin 'web-searxng' registered web provider: searxng
|
| 508 |
+
2026-06-03 22:55:12,829 INFO hermes_cli.plugins: Plugin 'web-tavily' registered web provider: tavily
|
| 509 |
+
2026-06-03 22:55:12,833 INFO hermes_cli.plugins: Plugin 'web-xai' registered web provider: xai
|
| 510 |
+
2026-06-03 22:55:13,020 INFO hermes_cli.plugins: Plugin discovery complete: 33 found, 28 enabled
|
| 511 |
+
2026-06-03 22:55:13,797 INFO tools.lazy_deps: Lazy-installing discord.py[voice]==2.7.1 brotlicffi==1.2.0.1 for feature 'platform.discord'
|
| 512 |
+
2026-06-03 22:55:21,066 INFO tools.tirith_security: tirith not found — downloading latest release for x86_64-unknown-linux-gnu...
|
| 513 |
+
2026-06-03 22:55:21,592 INFO gateway.run: Starting Hermes Gateway...
|
| 514 |
+
2026-06-03 22:55:21,592 INFO gateway.run: Session storage: /data/.hermes/sessions
|
| 515 |
+
2026-06-03 22:55:21,593 INFO gateway.run: Agent budget: max_iterations=90 (agent.max_turns from config.yaml, or HERMES_MAX_ITERATIONS from .env, or default 90)
|
| 516 |
+
2026-06-03 22:55:21,594 INFO gateway.run: Secret redaction: ENABLED (tool output, logs, and chat responses are scrubbed before delivery)
|
| 517 |
+
2026-06-03 22:55:21,640 INFO gateway.run: Connecting to api_server...
|
| 518 |
+
2026-06-03 22:55:21,648 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 519 |
+
2026-06-03 22:55:21,648 WARNING gateway.run: ✗ api_server failed to connect
|
| 520 |
+
2026-06-03 22:55:21,653 INFO gateway.platforms.api_server: [Api_Server] API server stopped
|
| 521 |
+
2026-06-03 22:55:21,656 WARNING gateway.run: Gateway started with no connected platforms — 1 platform(s) queued for retry: api_server: failed to connect
|
| 522 |
+
2026-06-03 22:55:21,659 WARNING gateway.run: No adapter could be created for any of the 1 configured platform(s). Check that required dependencies are installed and credentials are set. Gateway will continue for cron job execution.
|
| 523 |
+
2026-06-03 22:55:21,665 INFO gateway.run: Channel directory built: 0 target(s)
|
| 524 |
+
2026-06-03 22:55:21,666 INFO gateway.run: Starting reconnection watcher for 1 failed platform(s): api_server
|
| 525 |
+
2026-06-03 22:55:21,666 INFO gateway.run: Press Ctrl+C to stop
|
| 526 |
+
2026-06-03 22:55:21,669 INFO gateway.run: Cron ticker started (interval=60s)
|
| 527 |
+
2026-06-03 22:55:21,761 INFO tools.tirith_security: cosign not on PATH — installing tirith with SHA-256 verification only (install cosign for full supply chain verification)
|
| 528 |
+
2026-06-03 22:55:21,921 INFO tools.tirith_security: tirith installed to /data/.hermes/bin/tirith (SHA-256 only)
|
| 529 |
+
2026-06-03 22:55:26,678 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
|
| 530 |
+
2026-06-03 22:55:51,697 INFO gateway.run: Reconnecting api_server (attempt 2)...
|
| 531 |
+
2026-06-03 22:55:51,699 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 532 |
+
2026-06-03 22:55:51,704 INFO gateway.run: Reconnect api_server failed, next retry in 60s
|
logs/errors.log
CHANGED
|
@@ -75,3 +75,8 @@
|
|
| 75 |
2026-06-03 22:45:35,978 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 76 |
2026-06-03 22:47:36,115 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 77 |
2026-06-03 22:51:36,352 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
2026-06-03 22:45:35,978 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 76 |
2026-06-03 22:47:36,115 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 77 |
2026-06-03 22:51:36,352 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 78 |
+
2026-06-03 22:55:21,648 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 79 |
+
2026-06-03 22:55:21,648 WARNING gateway.run: ✗ api_server failed to connect
|
| 80 |
+
2026-06-03 22:55:21,656 WARNING gateway.run: Gateway started with no connected platforms — 1 platform(s) queued for retry: api_server: failed to connect
|
| 81 |
+
2026-06-03 22:55:21,659 WARNING gateway.run: No adapter could be created for any of the 1 configured platform(s). Check that required dependencies are installed and credentials are set. Gateway will continue for cron job execution.
|
| 82 |
+
2026-06-03 22:55:51,699 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
logs/gateway-exit-diag.log
CHANGED
|
@@ -8,3 +8,4 @@
|
|
| 8 |
{"ts": "2026-06-03T22:29:28.110034+00:00", "tag": "gateway.start", "pid": 72, "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}
|
| 9 |
{"ts": "2026-06-03T22:35:57.160909+00:00", "tag": "gateway.start", "pid": 72, "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}
|
| 10 |
{"ts": "2026-06-03T22:44:00.684231+00:00", "tag": "gateway.start", "pid": 72, "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}
|
|
|
|
|
|
| 8 |
{"ts": "2026-06-03T22:29:28.110034+00:00", "tag": "gateway.start", "pid": 72, "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}
|
| 9 |
{"ts": "2026-06-03T22:35:57.160909+00:00", "tag": "gateway.start", "pid": 72, "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}
|
| 10 |
{"ts": "2026-06-03T22:44:00.684231+00:00", "tag": "gateway.start", "pid": 72, "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}
|
| 11 |
+
{"ts": "2026-06-03T22:55:13.679030+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}
|
logs/gateway.log
CHANGED
|
@@ -259,3 +259,21 @@
|
|
| 259 |
2026-06-03 22:51:36,351 INFO gateway.run: Reconnecting api_server (attempt 5)...
|
| 260 |
2026-06-03 22:51:36,352 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 261 |
2026-06-03 22:51:36,360 INFO gateway.run: Reconnect api_server failed, next retry in 300s
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 259 |
2026-06-03 22:51:36,351 INFO gateway.run: Reconnecting api_server (attempt 5)...
|
| 260 |
2026-06-03 22:51:36,352 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 261 |
2026-06-03 22:51:36,360 INFO gateway.run: Reconnect api_server failed, next retry in 300s
|
| 262 |
+
2026-06-03 22:55:21,592 INFO gateway.run: Starting Hermes Gateway...
|
| 263 |
+
2026-06-03 22:55:21,592 INFO gateway.run: Session storage: /data/.hermes/sessions
|
| 264 |
+
2026-06-03 22:55:21,593 INFO gateway.run: Agent budget: max_iterations=90 (agent.max_turns from config.yaml, or HERMES_MAX_ITERATIONS from .env, or default 90)
|
| 265 |
+
2026-06-03 22:55:21,594 INFO gateway.run: Secret redaction: ENABLED (tool output, logs, and chat responses are scrubbed before delivery)
|
| 266 |
+
2026-06-03 22:55:21,640 INFO gateway.run: Connecting to api_server...
|
| 267 |
+
2026-06-03 22:55:21,648 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 268 |
+
2026-06-03 22:55:21,648 WARNING gateway.run: ✗ api_server failed to connect
|
| 269 |
+
2026-06-03 22:55:21,653 INFO gateway.platforms.api_server: [Api_Server] API server stopped
|
| 270 |
+
2026-06-03 22:55:21,656 WARNING gateway.run: Gateway started with no connected platforms — 1 platform(s) queued for retry: api_server: failed to connect
|
| 271 |
+
2026-06-03 22:55:21,659 WARNING gateway.run: No adapter could be created for any of the 1 configured platform(s). Check that required dependencies are installed and credentials are set. Gateway will continue for cron job execution.
|
| 272 |
+
2026-06-03 22:55:21,665 INFO gateway.run: Channel directory built: 0 target(s)
|
| 273 |
+
2026-06-03 22:55:21,666 INFO gateway.run: Starting reconnection watcher for 1 failed platform(s): api_server
|
| 274 |
+
2026-06-03 22:55:21,666 INFO gateway.run: Press Ctrl+C to stop
|
| 275 |
+
2026-06-03 22:55:21,669 INFO gateway.run: Cron ticker started (interval=60s)
|
| 276 |
+
2026-06-03 22:55:26,678 INFO gateway.run: kanban dispatcher: embedded in gateway (interval=60.0s)
|
| 277 |
+
2026-06-03 22:55:51,697 INFO gateway.run: Reconnecting api_server (attempt 2)...
|
| 278 |
+
2026-06-03 22:55:51,699 ERROR gateway.platforms.api_server: [Api_Server] Refusing to start: API_SERVER_KEY is required for the API server, including loopback-only binds on 127.0.0.1.
|
| 279 |
+
2026-06-03 22:55:51,704 INFO gateway.run: Reconnect api_server failed, next retry in 60s
|
metadata.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"timestamp": "2026-06-03T22:
|
| 3 |
"version": "0.10.0",
|
| 4 |
"hermes_home": "/data/.hermes"
|
| 5 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"timestamp": "2026-06-03T22:56:10.999057",
|
| 3 |
"version": "0.10.0",
|
| 4 |
"hermes_home": "/data/.hermes"
|
| 5 |
}
|