#!/usr/bin/env bash # Final 7 experiments to complete the grid. # All use groq/compound or llama4scout — TPD exhausted 2026-04-26, resets at midnight UTC. set -euo pipefail PYTHON=".venv312/bin/python" RUNNER="-m prompt_injection_framework.orchestration.run_experiment" run() { local config="$1" local delay="${2:-45}" echo "" echo "════════════════════════════════════════" echo " Running: $config" echo "════════════════════════════════════════" PYTHONPATH=src $PYTHON $RUNNER --config "$config" sleep "$delay" } run configs/tensortrust_extraction_25_groq_compound_mitigated.yaml run configs/hackaprompt_override_25_groq_compound.yaml run configs/hackaprompt_override_25_groq_compound_mitigated.yaml run configs/benign_control_25_llama4scout.yaml run configs/benign_control_25_llama4scout_mitigated.yaml run configs/benign_control_25_groq_compound.yaml run configs/benign_control_25_groq_compound_mitigated.yaml echo "" echo "════════════════════════════════════════" echo " Grid 100% complete." echo "════════════════════════════════════════"