testbed: agent demo loop (LLM via OpenAI-compatible endpoints + scripted fallback + auto handoff), E2E verified over WebSocket

This commit is contained in:
opencode
2026-08-08 04:28:31 +03:00
parent b9b5e23455
commit 8e467f22af
2 changed files with 570 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/usr/bin/env bash
# Start the AICC capsule testbed bridge over WebSocket (headless).
# Usage: scripts/run_bridge.sh [port] (default 8765)
set -euo pipefail
cd "$(dirname "$0")/.."
PORT="${1:-8765}"
exec testbed/.venv/bin/python -m testbed.bridge --host 127.0.0.1 --port "$PORT"