18 lines
477 B
Bash
Executable File
18 lines
477 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
bash "$SCRIPT_DIR/install_model_budget_guard_launchd.sh"
|
|
bash "$SCRIPT_DIR/install_model_schedule_guard_launchd.sh"
|
|
|
|
cat <<'MSG'
|
|
Installed local model guardrails:
|
|
- model budget guard (warn + auto-revert from high-cost model)
|
|
- schedule guard (day/night profile switching)
|
|
|
|
Before enabling schedule switching, edit:
|
|
config/model-schedule.config.json
|
|
"enabled": true
|
|
MSG
|