10 lines
375 B
Bash
Executable File
10 lines
375 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Run the AICC capsule demo (agent drives the capsule to the beacon).
|
|
# Usage: scripts/run_demo.sh [demo args...]
|
|
# e.g. scripts/run_demo.sh --agent auto
|
|
# scripts/run_demo.sh --agent scripted
|
|
# scripts/run_demo.sh --agent llm --model gemma4:e2b
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")/.."
|
|
exec testbed/.venv/bin/python -m testbed.demo "$@"
|