Spaces:
Paused
Paused
File size: 16,333 Bytes
6a2cda9 c0b63b8 6a2cda9 c176ea3 6a2cda9 c176ea3 6a2cda9 a804462 6a2cda9 c176ea3 a804462 6a2cda9 c176ea3 6a2cda9 c176ea3 6a2cda9 c176ea3 a804462 c176ea3 a804462 c176ea3 a804462 c176ea3 6a2cda9 | 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 | """
ImmunoOrg 2.0 β FastAPI OpenEnv Server
=======================================
Implements the OpenEnv REST API without requiring the openenv package.
Endpoints: GET /health POST /reset POST /step GET /state
"""
from __future__ import annotations
import json
import os
import secrets
import subprocess
import sys
import threading
import uuid
from pathlib import Path
from typing import Any, Optional
from fastapi import FastAPI, HTTPException, Query
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import HTMLResponse, PlainTextResponse
from pydantic import BaseModel
from immunoorg.models import (
ActionType, TacticalAction, StrategicAction, DiagnosticAction, ImmunoAction,
)
from immunoorg.environment import ImmunoOrgEnvironment
from immunoorg.api_models import (
ResetRequest,
ImmunoOrgAction,
StepEnvelope,
ImmunoOrgObservation,
StepResponse,
)
from server.war_room_routes import router as war_room_router
# βββ Global environment instance βββββββββββββββββββββββββββββββββββββββββββββ
_env: Optional[ImmunoOrgEnvironment] = None
_episode_id: str = ""
_training_lock = threading.Lock()
_training_proc: subprocess.Popen | None = None
def _repo_root() -> Path:
return Path(__file__).resolve().parent.parent
def _training_secret_ok(provided: str | None) -> bool:
expected = (os.environ.get("TRAINING_SECRET") or "").strip()
if not expected or provided is None:
return False
# Be forgiving about accidental whitespace/newlines in query param or secret UI.
provided_clean = provided.strip()
return secrets.compare_digest(provided_clean, expected)
def _require_training_token(token: str | None) -> None:
expected = (os.environ.get("TRAINING_SECRET") or "").strip()
if not expected:
raise HTTPException(
status_code=503,
detail="Training trigger is disabled. Set TRAINING_SECRET in Space secrets.",
)
if not _training_secret_ok(token):
raise HTTPException(status_code=401, detail="Invalid Training Token")
def _get_env() -> ImmunoOrgEnvironment:
if _env is None:
raise HTTPException(status_code=400, detail="Environment not initialized. Call /reset first.")
return _env
def _build_action(req: ImmunoOrgAction) -> ImmunoAction:
try:
atype = ActionType(req.action_type)
except ValueError:
atype = ActionType.TACTICAL
tactical = TacticalAction(req.tactical_action) if req.tactical_action else None
strategic = StrategicAction(req.strategic_action) if req.strategic_action else None
diagnostic = DiagnosticAction(req.diagnostic_action) if req.diagnostic_action else None
return ImmunoAction(
action_type=atype,
tactical_action=tactical,
strategic_action=strategic,
diagnostic_action=diagnostic,
target=req.target or "",
secondary_target=req.secondary_target,
parameters=req.parameters or {},
reasoning=req.reasoning or "",
)
def _obs_to_payload(obs, done: bool) -> ImmunoOrgObservation:
return ImmunoOrgObservation(
done=done,
episode_id=_episode_id,
current_phase=obs.current_phase.value,
step_count=obs.step_count,
sim_time=obs.sim_time,
threat_level=obs.threat_level,
system_downtime=obs.system_downtime,
action_result=obs.action_result,
action_success=obs.action_success,
visible_nodes=[n.model_dump() for n in obs.visible_nodes],
detected_attacks=[a.model_dump() for a in obs.detected_attacks],
recent_logs=[lg.model_dump() for lg in obs.recent_logs[:10]],
network_health_summary=obs.network_health_summary,
org_nodes=[n.model_dump() for n in obs.org_nodes],
pending_approvals=[a.model_dump() for a in obs.pending_approvals],
belief_map_feedback=obs.belief_map_feedback,
alerts=obs.alerts,
)
def _step_response(obs, reward: float, done: bool) -> StepResponse:
observation = _obs_to_payload(obs, done=done)
info = {
"episode_id": _episode_id,
"phase": observation.current_phase,
"step_count": observation.step_count,
}
return StepResponse(observation=observation, reward=reward, done=done, info=info)
# βββ FastAPI app ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
app = FastAPI(
title="ImmunoOrg 2.0 OpenEnv API",
description="The Autonomous, Self-Healing Enterprise β OpenEnv RL Environment",
version="2.0.0",
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
)
app.include_router(war_room_router)
@app.get("/health")
async def health():
return {
"status": "healthy",
"version": "2.0.0",
"environment": "ImmunoOrg",
"episode_active": _env is not None,
}
@app.get("/trained_status")
async def trained_status():
"""Probe whether a GRPO-trained LoRA adapter is available on the Hub yet.
The HPC pipeline pushes to ``hirann/immunoorg-grpo-defender`` once
training completes. This endpoint lets the demo UI show a live
"trained agent: ready / pending" badge without us redeploying.
"""
try:
from immunoorg.trained_agent import TrainedDefender
return TrainedDefender.get().status()
except Exception as e:
return {
"loaded": False,
"load_attempted": False,
"error": f"{type(e).__name__}: {e}",
}
_LANDING_HTML = """<!doctype html>
<html lang="en"><head>
<meta charset="utf-8"><title>ImmunoOrg 2.0 β OpenEnv environment</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<style>
body {font-family:-apple-system,BlinkMacSystemFont,Segoe UI,sans-serif;
background:#0d1117;color:#c9d1d9;margin:0;padding:48px 24px;}
.wrap {max-width:740px;margin:0 auto;}
h1 {font-size:1.8em;margin:0 0 12px;}
.sub {color:#8b949e;font-size:0.95em;margin-bottom:24px;}
.cta {display:inline-block;padding:14px 22px;background:#2da44e;color:white;
border-radius:8px;text-decoration:none;font-weight:600;font-size:1.05em;
margin:8px 8px 24px 0;}
.cta.secondary {background:#21262d;color:#c9d1d9;border:1px solid #30363d;}
code {background:#161b22;padding:2px 6px;border-radius:4px;font-size:0.85em;}
ul {line-height:1.7;}
a {color:#58a6ff;}
</style></head>
<body><div class="wrap">
<h1>π‘οΈ ImmunoOrg 2.0</h1>
<p class="sub">An OpenEnv RL environment where an LLM defender learns to
contain cyber-attacks <strong>and</strong> restructure the organization that
lets them succeed. Built for the OpenEnv Hackathon (India 2026).
<strong>Judges:</strong> use <a href="/demo">/demo</a> for the episode runner <em>and</em>
the <strong>Live LLM War Room</strong> (Theme #1) on the same page.</p>
<a class="cta" href="./demo">βΆ Launch interactive demo</a>
<a class="cta secondary" href="./docs">OpenAPI / FastAPI docs</a>
<p class="sub" style="background:#161b22;border:1px solid #30363d;border-radius:8px;padding:14px 16px;">
<strong>Hugging Face Hub page stuck on βRefreshingβ?</strong> This is often a CSS/JS cache issue in the Hub's iframe.
Try the <strong>Direct URL</strong> (bypasses the Hub frame):
<a href="https://hirann-immunoorg-v3.hf.space/demo" target="_blank">hirann-immunoorg-v3.hf.space/demo</a>
</p>
<h3>OpenEnv API endpoints (Gym-style)</h3>
<ul>
<li><code>POST /reset</code> β start an episode</li>
<li><code>POST /step</code> β apply an action</li>
<li><code>GET /state</code> β full server-side state</li>
<li><code>GET /health</code> β liveness + version</li>
<li><code>GET /trained_status</code> β is the trained LoRA loaded yet?</li>
<li><code>GET /openenv.yaml</code> β manifest</li>
<li><code>GET /demo</code> β Gradio UI (episode demo + <strong>War Room</strong> accordion)</li>
<li><code>POST /api/war-room</code> β LLM debate JSON API (optional)</li>
</ul>
<h3>Resources</h3>
<ul>
<li><a href="https://github.com/Charannoo/immunoorg">GitHub source</a></li>
<li><a href="https://github.com/Charannoo/immunoorg/blob/master/PROBLEM_STATEMENT.md">PROBLEM_STATEMENT.md</a> β Round 2 formal definition</li>
<li><a href="https://github.com/Charannoo/immunoorg/blob/master/BLOG_POST.md">BLOG_POST.md</a> β paste into a Hugging Face post</li>
<li><a href="https://github.com/Charannoo/immunoorg/blob/master/PUBLISH_HACKATHON.md">PUBLISH_HACKATHON.md</a> β submission URLs checklist</li>
<li><a href="https://github.com/Charannoo/immunoorg/blob/master/ImmunoOrg_Training_Colab.ipynb">Training Colab notebook</a> (TRL GRPO)</li>
<li><a href="https://docs.google.com/document/d/1Odznuzwtb1ecDOm2t6ToZd4MuMXXfO6vWUGcxbC6mFs/edit?tab=t.0#bookmark=kix.2dz0x0nie3me">What judges look for</a> (official guide)</li>
</ul>
</div></body></html>
"""
@app.get("/landing", response_class=HTMLResponse)
async def landing_page():
"""Former landing page, now moved to /landing."""
from fastapi.responses import HTMLResponse
return HTMLResponse(_LANDING_HTML)
@app.get("/admin/training/start")
async def admin_training_start(
token: str | None = Query(None, description="Must match TRAINING_SECRET"),
smoke_test: bool = Query(False),
model: str = Query("Qwen/Qwen2.5-0.5B-Instruct"),
epochs: int = Query(1, ge=1, le=20),
):
"""Start GRPO training in a background process (logs to persistent /data when available)."""
global _training_proc
_require_training_token(token)
with _training_lock:
if _training_proc is not None and _training_proc.poll() is None:
raise HTTPException(status_code=409, detail="Training already running")
repo = _repo_root()
from training.grpo_training_pipeline import log_file, training_root
out_dir = training_root() / "checkpoints" / "immunoorg-defender"
log_path = log_file()
log_path.parent.mkdir(parents=True, exist_ok=True)
cmd = [
sys.executable,
"-u",
"-m",
"training.grpo_training_pipeline",
"run",
"--model",
model,
"--epochs",
str(epochs),
"--output-dir",
str(out_dir),
]
if smoke_test:
cmd.append("--smoke-test")
env = os.environ.copy()
env["PYTHONUNBUFFERED"] = "1"
log_f = open(log_path, "ab", buffering=0)
_training_proc = subprocess.Popen(
cmd,
cwd=str(repo),
env=env,
stdout=log_f,
stderr=subprocess.STDOUT,
stdin=subprocess.DEVNULL,
close_fds=True,
)
return {
"status": "started",
"pid": _training_proc.pid,
"log_file": str(log_path),
"smoke_test": smoke_test,
"model": model,
"epochs": epochs,
}
@app.get("/admin/training/status")
async def admin_training_status(token: str | None = Query(None)):
_require_training_token(token)
try:
from training.grpo_training_pipeline import status_file
p = status_file()
if not p.exists():
return {"state": "never_started"}
return json.loads(p.read_text(encoding="utf-8"))
except Exception as e:
raise HTTPException(status_code=500, detail=str(e)) from e
@app.get("/admin/training/log")
async def admin_training_log(
token: str | None = Query(None),
lines: int = Query(200, ge=1, le=5000),
):
_require_training_token(token)
try:
from training.grpo_training_pipeline import log_file
p = log_file()
if not p.exists():
return PlainTextResponse("(no log yet)\n", media_type="text/plain; charset=utf-8")
text = p.read_text(encoding="utf-8", errors="replace").splitlines()
tail = "\n".join(text[-lines:]) + ("\n" if text else "")
return PlainTextResponse(tail, media_type="text/plain; charset=utf-8")
except Exception as e:
raise HTTPException(status_code=500, detail=str(e)) from e
@app.post("/reset")
async def reset(req: ResetRequest = ResetRequest()) -> StepResponse:
global _env, _episode_id
_episode_id = str(uuid.uuid4())
_env = ImmunoOrgEnvironment(difficulty=req.difficulty, seed=req.seed)
obs = _env.reset()
return _step_response(obs, reward=0.0, done=False)
@app.post("/step")
async def step(req: ImmunoOrgAction | StepEnvelope):
env = _get_env()
action_req = req.action if isinstance(req, StepEnvelope) else req
action = _build_action(action_req)
obs, reward, done = env.step(action)
return _step_response(obs, reward=reward, done=done)
class DirectiveRequest(BaseModel):
directive: str
@app.post("/directive")
async def inject_directive(req: DirectiveRequest):
env = _get_env()
env.inject_directive(req.directive)
return {"status": "success", "directive": req.directive}
@app.get("/state")
async def state():
env = _get_env()
s = env.state
return {
"episode_id": _episode_id,
"step_count": s.step_count,
"difficulty_level": s.difficulty_level,
"current_phase": s.current_phase.value,
"threat_level": s.threat_level,
"total_downtime": s.total_downtime,
"total_damage": s.total_damage,
"org_chaos_score": s.org_chaos_score,
"cumulative_reward": s.cumulative_reward,
"active_attacks": len(s.active_attacks),
"contained_attacks": len(s.contained_attacks),
"org_changes_made": s.org_changes_made,
"termination_reason": s.termination_reason,
# 2.0 metrics
"migration_progress": env.migration_engine.get_progress() if env.migration_engine else {},
"pipeline_integrity": env._last_pipeline_integrity,
"war_room_debates": len(env.war_room.debate_history) if env.war_room else 0,
"patronus_score": env.executive_context.get_patronus_score() if env.executive_context else 0.5,
"reasoning_traces": [t.model_dump() for t in s.reasoning_traces],
}
@app.get("/openenv.yaml")
async def get_openenv_yaml():
"""Serve the environment manifest."""
try:
with open("openenv.yaml", "r") as f:
content = f.read()
return PlainTextResponse(content, media_type="text/yaml")
except FileNotFoundError:
raise HTTPException(status_code=404, detail="openenv.yaml not found")
# βββ Debugging ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
import logging
import io
log_stream = io.StringIO()
logging.basicConfig(level=logging.INFO, stream=log_stream)
logger = logging.getLogger("immunoorg")
@app.get("/debug/logs")
async def get_logs():
"""Returns the captured application logs for troubleshooting."""
return {"logs": log_stream.getvalue()}
# βββ Mount the Gradio visual demo at / ββββββββββββββββββββββββββββββββββββββ
#
# By mounting at / instead of /demo, the main Space URL on the Hugging Face Hub
# will load the Gradio UI directly, which is the best experience for judges.
# API routes (/health, /reset, /step) defined above still take precedence.
try:
import gradio as gr
from server.demo_ui import build_demo
logger.info("Building Gradio demo UI...")
_demo = build_demo()
# Mount the Gradio app at the root /
app = gr.mount_gradio_app(app, _demo, path="/")
logger.info("Gradio demo UI mounted at /")
@app.get("/demo")
@app.get("/launch")
async def demo_redirect():
from fastapi.responses import RedirectResponse
return RedirectResponse(url="/")
except Exception as _demo_exc:
logger.error("Failed to mount Gradio demo UI: %s", _demo_exc, exc_info=True)
if __name__ == "__main__":
import uvicorn
port = int(os.environ.get("PORT", "7860"))
uvicorn.run(app, host="0.0.0.0", port=port)
|