Spaces:
Sleeping
Sleeping
File size: 22,870 Bytes
b6f80c5 a099b30 b6f80c5 a099b30 b6f80c5 a099b30 b6f80c5 0e0dfc3 b6f80c5 0e0dfc3 b6f80c5 a099b30 b6f80c5 | 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 | """
FastAPI app for the Autonomous Traffic Control OpenEnv environment.
Endpoints provided automatically by openenv-core create_app():
POST /reset β start a new episode
POST /step β execute one action
GET /state β episode-level cumulative state
GET /schema β action / observation JSON schemas
WS /ws β WebSocket for persistent sessions
GET /health β liveness probe
GET /docs β Swagger UI
Custom endpoints added here:
POST /grade β run the automated task grader (returns 0-1 score)
GET /ui β Gradio testing interface
Usage:
# From traffic_control/ directory:
uvicorn server.app:app --host 0.0.0.0 --port 8000 --reload
python -m traffic_control.server.app
"""
from __future__ import annotations
import sys
import os
# Ensure this package's parent is on sys.path so relative package imports work
# regardless of from where uvicorn is invoked.
_PKG_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) # traffic_control/
_ROOT = os.path.dirname(_PKG_DIR) # openv/
for _p in (_PKG_DIR, _ROOT):
if _p not in sys.path:
sys.path.insert(0, _p)
from typing import Optional
from openenv.core.env_server.http_server import create_app
from fastapi import Request
from fastapi.responses import HTMLResponse
# All imports from within traffic_control/ only
from traffic_control.models import TrafficAction, TrafficObservation
from traffic_control.environment import TrafficControlEnvironment
from traffic_control.tasks import grade as run_grader
from traffic_control.dashboard import render_intersection, observation_to_render_state
from traffic_control.analytics import get_history
from traffic_control.arena import get_arena
# ---------------------------------------------------------------------------
# 1. Standard OpenEnv app
# ---------------------------------------------------------------------------
app = create_app(
TrafficControlEnvironment,
TrafficAction,
TrafficObservation,
env_name="traffic_control",
max_concurrent_envs=4,
)
# ---------------------------------------------------------------------------
# 2. /grade endpoint & root for HF Spaces
# ---------------------------------------------------------------------------
@app.get("/", include_in_schema=False)
def index():
"""Hugging Face Spaces healthcheck requires a 200 OK on the root path."""
return {"status": "ok", "message": "Autonomous Traffic Control OpenEnv"}
@app.post("/grade", tags=["eval"])
async def grade(request: Request):
"""
Run the automated grader for the environment's current state.
Body (all optional):
task_id, total_vehicles_passed, total_emergency_passed,
total_waiting_time, total_collisions, total_emergency_delay,
total_phase_changes, step_count
"""
body = {}
try:
body = await request.json()
except Exception:
pass
task_id = body.get("task_id", "basic_flow")
total_vehicles = int(body.get("total_vehicles_passed", 0))
total_emergency = int(body.get("total_emergency_passed", 0))
total_waiting = float(body.get("total_waiting_time", 0.0))
total_collisions = int(body.get("total_collisions", 0))
total_emergency_delay = float(body.get("total_emergency_delay", 0.0))
total_phase_changes = int(body.get("total_phase_changes", 0))
step_count = int(body.get("step_count", 1))
result = run_grader(
task_id,
total_vehicles_passed=total_vehicles,
total_emergency_passed=total_emergency,
total_waiting_time=total_waiting,
total_collisions=total_collisions,
total_emergency_delay=total_emergency_delay,
total_phase_changes=total_phase_changes,
step_count=step_count,
)
return {
"task_id": task_id,
"score": result.score,
"metrics": result.metrics,
"feedback": result.feedback,
}
# ---------------------------------------------------------------------------
# Dashboard endpoints
# ---------------------------------------------------------------------------
@app.get("/dashboard", tags=["dashboard"])
async def dashboard():
"""Serve the live dashboard HTML page."""
html_content = '''<!DOCTYPE html>
<html>
<head>
<title>Traffic Control Dashboard</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
background: #0f172a;
color: #e2e8f0;
margin: 0;
padding: 20px;
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
h1 {
text-align: center;
margin-bottom: 10px;
}
.controls {
display: flex;
gap: 10px;
justify-content: center;
margin-bottom: 20px;
flex-wrap: wrap;
}
button, select {
padding: 10px 20px;
font-size: 14px;
border-radius: 6px;
border: none;
cursor: pointer;
}
button {
background: #3b82f6;
color: white;
}
button:hover {
background: #2563eb;
}
select {
background: #1e293b;
color: #e2e8f0;
border: 1px solid #475569;
}
.dashboard-container {
display: grid;
grid-template-columns: 1fr 300px;
gap: 20px;
}
.visualization {
background: #1e293b;
border-radius: 12px;
padding: 20px;
}
.visualization svg {
width: 100%;
height: auto;
border-radius: 8px;
}
.stats-panel {
background: #1e293b;
border-radius: 12px;
padding: 20px;
}
.stat-item {
margin-bottom: 15px;
padding: 12px;
background: #0f172a;
border-radius: 8px;
}
.stat-label {
font-size: 12px;
color: #94a3b8;
text-transform: uppercase;
}
.stat-value {
font-size: 24px;
font-weight: bold;
color: #22c55e;
}
.stat-value.warning {
color: #eab308;
}
.stat-value.danger {
color: #ef4444;
}
.phase-indicator {
display: inline-block;
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: bold;
}
.phase-ns { background: #22c55e; color: #064e3b; }
.phase-ew { background: #3b82f6; color: #1e3a8a; }
.phase-red { background: #ef4444; color: #7f1d1d; }
.queue-bar {
height: 8px;
background: #334155;
border-radius: 4px;
margin-top: 5px;
overflow: hidden;
}
.queue-fill {
height: 100%;
background: linear-gradient(90deg, #22c55e, #eab308, #ef4444);
transition: width 0.3s;
}
.auto-toggle {
display: flex;
align-items: center;
gap: 10px;
justify-content: center;
margin-top: 10px;
}
.toggle-switch {
position: relative;
width: 50px;
height: 24px;
background: #475569;
border-radius: 12px;
cursor: pointer;
transition: background 0.3s;
}
.toggle-switch.active {
background: #22c55e;
}
.toggle-slider {
position: absolute;
top: 2px;
left: 2px;
width: 20px;
height: 20px;
background: white;
border-radius: 50%;
transition: transform 0.3s;
}
.toggle-switch.active .toggle-slider {
transform: translateX(26px);
}
</style>
</head>
<body>
<div class="container">
<h1>π¦ Autonomous Traffic Control Dashboard</h1>
<div class="controls">
<select id="taskSelect">
<option value="basic_flow">Basic Flow</option>
<option value="emergency_priority">Emergency Priority</option>
<option value="dynamic_scenarios">Dynamic Scenarios</option>
</select>
<button onclick="resetEnv()">π Reset</button>
<button onclick="stepOnce()">βΆοΈ Step Once</button>
<div class="auto-toggle">
<span>Auto Run</span>
<div class="toggle-switch" id="autoToggle" onclick="toggleAuto()">
<div class="toggle-slider"></div>
</div>
</div>
<button onclick="setPhase(0)">π’ NS Green</button>
<button onclick="setPhase(1)">π’ EW Green</button>
<button onclick="setPhase(2)">π΄ All Red</button>
</div>
<div class="dashboard-container">
<div class="visualization">
<div id="svgContainer">Loading...</div>
</div>
<div class="stats-panel">
<h3>π Live Statistics</h3>
<div class="stat-item">
<div class="stat-label">Current Phase</div>
<div id="phaseValue" class="stat-value">-</div>
</div>
<div class="stat-item">
<div class="stat-label">Step Count</div>
<div id="stepValue" class="stat-value">0</div>
</div>
<div class="stat-item">
<div class="stat-label">Total Reward</div>
<div id="rewardValue" class="stat-value">0.00</div>
</div>
<div class="stat-item">
<div class="stat-label">Vehicles Passed</div>
<div id="vehiclesValue" class="stat-value">0</div>
</div>
<div class="stat-item">
<div class="stat-label">Emergency Vehicles</div>
<div id="emergencyValue" class="stat-value">0</div>
</div>
<div class="stat-item">
<div class="stat-label">Queue Depths</div>
<div id="queueValue" style="font-size: 14px;">N:0 S:0 E:0 W:0</div>
<div class="queue-bar">
<div class="queue-fill" id="queueBar" style="width: 0%"></div>
</div>
</div>
</div>
</div>
</div>
<script>
let autoRunning = false;
let autoInterval = null;
let totalReward = 0;
let totalVehicles = 0;
let totalEmergency = 0;
let stepCount = 0;
async function resetEnv() {
const task = document.getElementById('taskSelect').value;
try {
await fetch('/reset', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({task_id: task, seed: 42})
});
totalReward = 0;
totalVehicles = 0;
totalEmergency = 0;
stepCount = 0;
updateDashboard();
} catch (e) {
console.error('Reset failed:', e);
}
}
async function stepOnce() {
try {
const response = await fetch('/step', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({action: {light_phase: 0}})
});
const data = await response.json();
updateStats(data);
updateDashboard();
} catch (e) {
console.error('Step failed:', e);
}
}
async function setPhase(phase) {
try {
const response = await fetch('/step', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({action: {light_phase: phase}})
});
const data = await response.json();
updateStats(data);
updateDashboard();
} catch (e) {
console.error('Set phase failed:', e);
}
}
function toggleAuto() {
autoRunning = !autoRunning;
document.getElementById('autoToggle').classList.toggle('active', autoRunning);
if (autoRunning) {
autoInterval = setInterval(stepOnce, 1000);
} else {
clearInterval(autoInterval);
}
}
function updateStats(data) {
if (data.reward) totalReward += data.reward;
if (data.metadata && data.metadata.vehicles_passed) {
totalVehicles = data.metadata.total_vehicles_passed || totalVehicles;
totalEmergency = data.metadata.total_emergency_passed || totalEmergency;
}
stepCount++;
document.getElementById('stepValue').textContent = stepCount;
document.getElementById('rewardValue').textContent = totalReward.toFixed(2);
document.getElementById('vehiclesValue').textContent = totalVehicles;
document.getElementById('emergencyValue').textContent = totalEmergency;
if (data.observation) {
const obs = data.observation;
const phaseNames = {0: 'NS GREEN', 1: 'EW GREEN', 2: 'ALL RED', 3: 'NS YELLOW', 4: 'EW YELLOW'};
document.getElementById('phaseValue').textContent = phaseNames[obs.current_phase] || 'UNKNOWN';
const queues = obs.queue_lengths;
const totalQueue = queues.reduce((a, b) => a + b, 0) + obs.emergency_queue.reduce((a, b) => a + b, 0);
document.getElementById('queueValue').textContent = `N:${queues[0]} S:${queues[1]} E:${queues[2]} W:${queues[3]}`;
document.getElementById('queueBar').style.width = Math.min(totalQueue * 5, 100) + '%';
}
}
async function updateDashboard() {
try {
const response = await fetch('/state');
const state = await response.json();
const svgResponse = await fetch('/dashboard/svg', {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify(state)
});
const svgData = await svgResponse.json();
document.getElementById('svgContainer').innerHTML = svgData.svg;
} catch (e) {
console.error('Dashboard update failed:', e);
}
}
// Initial load
resetEnv();
</script>
</body>
</html>'''
return HTMLResponse(content=html_content)
@app.post("/dashboard/svg", tags=["dashboard"])
async def dashboard_svg(request: Request):
"""Generate SVG visualization from current state."""
try:
state_data = await request.json()
render_state = observation_to_render_state(
state_data.get("observation", {}),
total_vehicles=state_data.get("total_vehicles_passed", 0),
total_emergency=state_data.get("total_emergency_passed", 0),
step=state_data.get("step_count", 0),
reward=state_data.get("reward", 0.0),
)
svg = render_intersection(render_state)
return {"svg": svg}
except Exception as e:
return {"error": str(e), "svg": ""}
# ---------------------------------------------------------------------------
# Analytics endpoints
# ---------------------------------------------------------------------------
@app.get("/analytics/summary", tags=["analytics"])
async def analytics_summary(task_id: Optional[str] = None):
"""Get summary statistics of all recorded episodes."""
return get_history().get_summary(task_id)
@app.get("/analytics/episodes", tags=["analytics"])
async def list_episodes():
"""List all recorded episodes."""
history = get_history()
return {
"episodes": [
{
"episode_id": e.episode_id,
"task_id": e.task_id,
"steps": e.steps,
"total_reward": round(e.total_reward, 2),
"avg_reward_per_step": round(e.avg_reward_per_step, 4),
}
for e in history.episodes
]
}
@app.get("/analytics/episodes/{episode_id}", tags=["analytics"])
async def get_episode(episode_id: str):
"""Get detailed metrics for a specific episode."""
details = get_history().get_episode_details(episode_id)
if details:
return details
return {"error": "Episode not found"}
# ---------------------------------------------------------------------------
# Arena endpoints
# ---------------------------------------------------------------------------
@app.post("/arena/run", tags=["arena"])
async def arena_run(request: Request):
"""Run agent comparison in the arena."""
body = {}
try:
body = await request.json()
except Exception:
pass
task_id = body.get("task_id", "basic_flow")
agents = body.get("agents", None) # List of agent types or None for all
runs_per_agent = int(body.get("runs_per_agent", 1))
arena = get_arena()
result = await arena.run_comparison(
task_id=task_id,
agents=agents,
runs_per_agent=runs_per_agent,
)
return result
@app.get("/arena/agents", tags=["arena"])
async def list_agents():
"""List available agents in the arena."""
return {
"agents": [
{"id": "llm", "name": "Dynamic LLM Agent", "description": "Makes live LLM API calls for each decision"},
{"id": "rule_based", "name": "Smart Rule-Based", "description": "Optimized rule-based controller"},
{"id": "random", "name": "Random Baseline", "description": "Random action selector"},
{"id": "round_robin", "name": "Round Robin", "description": "Simple alternating controller"},
]
}
@app.get("/arena/results", tags=["arena"])
async def arena_results():
"""Get all historical arena results."""
arena = get_arena()
return {
"total_comparisons": len(arena.results),
"recent_results": [
{
"agent": r.agent_type,
"episode": r.episode_id,
"score": r.score,
"reward": round(r.total_reward, 2),
"steps": r.steps,
}
for r in arena.results[-20:]
],
}
# ---------------------------------------------------------------------------
# 3. Gradio UI (mounted at /ui)
# ---------------------------------------------------------------------------
try:
import gradio as gr
import requests as _req
# Use SERVER_PORT env var (default 8000) so the UI works on any port
_PORT = int(os.environ.get("PORT", os.environ.get("SERVER_PORT", "8000")))
_SELF_BASE = f"http://127.0.0.1:{_PORT}"
def _reset_env(task_id: str):
try:
r = _req.post(
f"{_SELF_BASE}/reset",
json={"task_id": task_id, "seed": 42},
timeout=10,
)
return r.json() if r.status_code == 200 else {"error": r.text}
except Exception as exc:
return {"error": str(exc)}
def _step_env(phase: str):
try:
# openenv-core wraps the action under an "action" key
r = _req.post(
f"{_SELF_BASE}/step",
json={"action": {"light_phase": int(phase)}},
timeout=10,
)
return r.json() if r.status_code == 200 else {"error": r.text}
except Exception as exc:
return {"error": str(exc)}
def _get_state():
try:
r = _req.get(f"{_SELF_BASE}/state", timeout=10)
return r.json() if r.status_code == 200 else {"error": r.text}
except Exception as exc:
return {"error": str(exc)}
with gr.Blocks(title="Traffic Control UI") as _ui:
gr.Markdown("# π¦ Autonomous Traffic Control β Testing UI")
gr.Markdown("Interact with the OpenEnv HTTP API live.")
with gr.Row():
_task = gr.Dropdown(
choices=["basic_flow", "emergency_priority", "dynamic_scenarios"],
value="basic_flow",
label="Task ID",
)
_reset_btn = gr.Button("π Reset")
_state_btn = gr.Button("π State")
with gr.Row():
_phase = gr.Radio(
choices=[("0 β NS Green", "0"), ("1 β EW Green", "1"), ("2 β All Red", "2")],
value="0",
label="Next Action (Light Phase)",
)
_step_btn = gr.Button("βΆοΈ Step", variant="primary")
_out = gr.JSON(label="API Response")
_reset_btn.click(_reset_env, inputs=[_task], outputs=[_out])
_step_btn.click(_step_env, inputs=[_phase], outputs=[_out])
_state_btn.click(_get_state, outputs=[_out])
app = gr.mount_gradio_app(app, _ui, path="/ui")
except ImportError:
# Gradio is optional; server still works without it
pass
# ---------------------------------------------------------------------------
# Entry point
# ---------------------------------------------------------------------------
def main() -> None:
"""Entry point: start uvicorn server. Reads --host and --port from CLI args."""
import argparse
import uvicorn
parser = argparse.ArgumentParser(description="Traffic Control OpenEnv Server")
parser.add_argument("--host", default=os.environ.get("HOST", "0.0.0.0"))
parser.add_argument("--port", type=int, default=int(os.environ.get("PORT", "8000")))
parser.add_argument("--workers", type=int, default=1)
args, _ = parser.parse_known_args() # ignore unknown args from uv
uvicorn.run(
"traffic_control.server.app:app",
host=args.host,
port=args.port,
workers=args.workers,
)
if __name__ == "__main__":
main()
|