Spaces:
Running
Running
Frontend Workflow
The frontend is React-based, backend-driven, and served directly by FastAPI.
Access
- UI:
/ui - Assets:
/ui/assets/* - API namespace:
/api/*
What Is Visible in UI
- OpenEnv API execution (
reset/step/state/grade) - Heuristic baseline agent runs (
/api/autostep,/api/benchmark) - Trained RL model execution (Phase 2/3 checkpoints via
/api/rl/run) - Trained RL evaluation across tasks (
/api/rl/evaluate) - Script-level workflow visibility for:
baseline_openai.pyinference.py
Frontend API Surface
- Core:
GET /api/healthGET /api/tasksGET /api/agentsPOST /api/resetPOST /api/stepPOST /api/statePOST /api/gradeGET /api/sessionsDELETE /api/sessions/{session_id}
- Baseline execution:
POST /api/autostepPOST /api/benchmark
- Workflow visibility:
GET /api/workflows/componentsPOST /api/workflows/run
- RL visibility/execution:
GET /api/rl/modelsPOST /api/rl/runPOST /api/rl/evaluate
Deployment Notes
- No Node.js build is required for serving the current frontend.
- Backend startup remains
app.main:app. - Frontend does not call external LLM providers directly.