evalstone/webui/start.sh
sora 7c449d3126 Add local EvalStone web UI for launch and results comparison.
Add a FastAPI panel under webui/ to select suites or benchmarks, configure model endpoint and thinking mode, stream evaluation logs, and visualize multi-model scores from output/.
2026-07-29 06:49:39 +00:00

16 lines
340 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$DIR"
HOST="${WEBUI_HOST:-0.0.0.0}"
PORT="${WEBUI_PORT:-7860}"
echo "EvalStone Launch Panel"
echo " project : $(dirname "$DIR")"
echo " listen : http://${HOST}:${PORT}"
echo
exec python3 -m uvicorn server:app --host "$HOST" --port "$PORT"