18 lines
515 B
Bash
Executable File
18 lines
515 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
|
|
|
|
# Load API keys from the project .env file (if present)
|
|
if [ -f .env ]; then
|
|
set -a
|
|
# shellcheck disable=SC1091
|
|
. ./.env
|
|
set +a
|
|
fi
|
|
cd "$(dirname "$0")/.."
|
|
exec testbed/.venv/bin/python -m testbed.demo "$@"
|