Files
geointel/scripts/verify_golden_qa_benchmark.sh
T
Codex c85953f389
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled
Expand golden QA benchmark scenarios
2026-06-18 21:46:19 +02:00

32 lines
847 B
Bash

#!/usr/bin/env bash
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT"
if [ -z "${PYTHON_BIN:-}" ]; then
PYTHON_BIN=""
for candidate in python3 python.exe python; do
if command -v "${candidate}" >/dev/null 2>&1 && "${candidate}" -c "import sys, geoalchemy2" >/dev/null 2>&1; then
PYTHON_BIN="${candidate}"
break
fi
done
if [ -z "${PYTHON_BIN}" ]; then
for candidate in python3 python.exe python; do
if command -v "${candidate}" >/dev/null 2>&1 && "${candidate}" -c "import sys" >/dev/null 2>&1; then
PYTHON_BIN="${candidate}"
break
fi
done
fi
fi
if [ -z "${PYTHON_BIN:-}" ]; then
echo "No usable python interpreter found" >&2
exit 1
fi
echo "== GeoIntel golden QA/QC benchmark =="
"${PYTHON_BIN}" scripts/run_golden_qa_benchmark.py --json