-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSTART_COMPETITION_REPLAY.cmd
More file actions
69 lines (55 loc) · 1.7 KB
/
Copy pathSTART_COMPETITION_REPLAY.cmd
File metadata and controls
69 lines (55 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@echo off
setlocal
cd /d "%~dp0"
set "PYTHON=.venv\Scripts\python.exe"
set "HEALTH=artifacts\agentteams\health.json"
set "RUN=artifacts\benchmarks\task24\task24-governed-20260815-p204013\severity-normalization\live\run-evidence.json"
set "VERIFIED=artifacts\benchmarks\task24\task24-governed-20260815-p204013\severity-normalization\verified\artifacts\live-repair-evidence.json"
echo AgentLoom Task 24 MiniMax evidence replay
echo ==========================================
echo This command validates fixed evidence. It does not call a model.
echo.
if not exist "%PYTHON%" goto :missing_python
if not exist "%HEALTH%" goto :missing_health
if not exist "%RUN%" goto :missing_run
if not exist "%VERIFIED%" goto :missing_verified
echo [1/2] Validating the bound evidence chain...
"%PYTHON%" -m agentloom.cli inspect-live ^
--health-evidence "%HEALTH%" ^
--run-evidence "%RUN%" ^
--verified-evidence "%VERIFIED%" ^
--public-output
if errorlevel 1 goto :validation_failed
echo.
echo Evidence validation passed.
echo Press any key to open the read-only MiniMax-M2.5 TUI replay.
pause >nul
echo [2/2] Opening TUI...
"%PYTHON%" -m agentloom.cli tui ^
--health-evidence "%HEALTH%" ^
--run-evidence "%RUN%" ^
--verified-evidence "%VERIFIED%" ^
--public-output
goto :end
:missing_python
echo ERROR: Missing Python environment: %PYTHON%
goto :failed
:missing_health
echo ERROR: Missing health evidence: %HEALTH%
goto :failed
:missing_run
echo ERROR: Missing run evidence: %RUN%
goto :failed
:missing_verified
echo ERROR: Missing verified evidence: %VERIFIED%
goto :failed
:validation_failed
echo.
echo ERROR: Evidence validation failed. The TUI was not opened.
goto :failed
:failed
echo.
pause
exit /b 1
:end
endlocal