From 378476570d8c61750e0a4953ae038fda5437de8a Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Mon, 13 Apr 2026 23:25:15 +0000 Subject: [PATCH] feat(config): Add default dispatch configuration Add default configuration for VPS agent dispatch worker with: - Agent-specific hermes binary paths - Validation timeout settings - Command timeout settings - Retry configuration Resolves #350 --- config/dispatch-config.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 config/dispatch-config.json diff --git a/config/dispatch-config.json b/config/dispatch-config.json new file mode 100644 index 000000000..285059285 --- /dev/null +++ b/config/dispatch-config.json @@ -0,0 +1,18 @@ +{ + "agents": { + "ezra": { + "host": "143.198.27.163", + "hermes_path": "/root/wizards/ezra/hermes-agent/venv/bin/hermes", + "username": "root" + }, + "timmy": { + "host": "timmy", + "hermes_path": "/root/wizards/timmy/hermes-agent/venv/bin/hermes", + "username": "root" + } + }, + "validation_timeout": 30, + "command_timeout": 300, + "max_retries": 2, + "retry_delay": 5 +} \ No newline at end of file