Spaces:
Sleeping
Sleeping
| """ | |
| CloudSRE v2 β FastAPI Application. | |
| HTTP server exposing the CloudSREEnvironment over HTTP and WebSocket. | |
| Matches the OpenEnv server contract (create_app). | |
| Kube SRE Gym equivalent: server/app.py (88 lines) | |
| Ours adds: /tasks endpoint (required by OpenEnv validator) + more metadata. | |
| """ | |
| import sys | |
| import os | |
| sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | |
| try: | |
| from openenv.core.env_server.http_server import create_app | |
| except Exception as e: | |
| raise ImportError( | |
| "openenv is required. Install with: uv sync" | |
| ) from e | |
| try: | |
| from models import CloudSREAction, CloudSREObservation | |
| from server.cloud_sre_environment import CloudSREEnvironment | |
| except ImportError: | |
| from models import CloudSREAction, CloudSREObservation | |
| from server.cloud_sre_environment import CloudSREEnvironment | |
| from fastapi.responses import HTMLResponse | |
| # ββ Stateful Environment Factory βββββββββββββββββββββββββββββββββββββββββ | |
| # CloudSRE manages REAL infrastructure: 16 service subprocesses, ports, | |
| # SQLite databases, and message queues. These resources must persist across | |
| # the full episode lifecycle (reset β step β step β ... β done). | |
| # | |
| # We use a singleton factory pattern to ensure the environment instance | |
| # (and its managed resources) survives across HTTP request boundaries. | |
| # The close() override prevents premature resource teardown between calls. | |
| # | |
| # This pattern is standard for environments with real infrastructure β | |
| # see also: KubeSRE Gym, SWE-bench, WebArena. | |
| _singleton_env = None | |
| class PersistentCloudSRE(CloudSREEnvironment): | |
| """CloudSRE with persistent infrastructure across HTTP request boundaries. | |
| Overrides close() to prevent the HTTP server from tearing down | |
| managed subprocesses and infrastructure between API calls. | |
| """ | |
| def close(self): | |
| """No-op: infrastructure must persist across the episode lifecycle.""" | |
| pass | |
| def _env_factory(): | |
| """Return the persistent environment instance (created on first call).""" | |
| global _singleton_env | |
| if _singleton_env is None: | |
| _singleton_env = PersistentCloudSRE() | |
| return _singleton_env | |
| # Create the OpenEnv app | |
| app = create_app( | |
| _env_factory, | |
| CloudSREAction, | |
| CloudSREObservation, | |
| env_name="cloud_sre_v2", | |
| max_concurrent_envs=1, | |
| ) | |
| # ββ Landing Page (Gradio Dashboard Mount) βββββββββββββββββββββββββββββββββββ | |
| import gradio as gr | |
| try: | |
| from dashboard import demo | |
| except ImportError: | |
| import sys, os | |
| sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | |
| from dashboard import demo | |
| app = gr.mount_gradio_app(app, demo, path="/") | |
| # ββ /tasks endpoint β required by OpenEnv Phase 2 validator βββββββββββββββ | |
| async def list_tasks(): | |
| """Return available tasks β required by OpenEnv validator.""" | |
| return [ | |
| { | |
| "id": "warmup", | |
| "name": "Single-Service Failure (Warmup)", | |
| "description": "Single clear failure with obvious signals. No red herrings, no cascades.", | |
| "difficulty": "easy", | |
| "time_limit_seconds": 300, | |
| "max_steps": 10, | |
| "grader": "server.graders.grade_warmup", | |
| "action_schema": { | |
| "command": "SRE command (curl, cat, sqlite3, ps, kill, restart_service, queue, ...)" | |
| }, | |
| }, | |
| { | |
| "id": "single_fault", | |
| "name": "Single Fault with Red Herrings", | |
| "description": "Single root cause with misleading signals from other services.", | |
| "difficulty": "medium", | |
| "time_limit_seconds": 600, | |
| "max_steps": 15, | |
| "grader": "server.graders.grade_single_fault", | |
| "action_schema": { | |
| "command": "SRE command to diagnose and fix the incident" | |
| }, | |
| }, | |
| { | |
| "id": "cascade", | |
| "name": "Cascading Failure", | |
| "description": "Single fault that triggers a secondary failure after the primary fix.", | |
| "difficulty": "hard", | |
| "time_limit_seconds": 900, | |
| "max_steps": 20, | |
| "grader": "server.graders.grade_cascade", | |
| "action_schema": { | |
| "command": "SRE command β must handle both primary fault and the cascade" | |
| }, | |
| }, | |
| { | |
| "id": "multi_cascade", | |
| "name": "Multi-Service Cascading Outage", | |
| "description": "2+ cascading failures requiring prioritized resolution.", | |
| "difficulty": "expert", | |
| "time_limit_seconds": 1200, | |
| "max_steps": 25, | |
| "grader": "server.graders.grade_multi_cascade", | |
| "action_schema": { | |
| "command": "SRE command β must resolve all failures in correct priority order" | |
| }, | |
| }, | |
| { | |
| "id": "adversarial", | |
| "name": "LLM-Designed Adversarial Incident", | |
| "description": "Dynamically generated incident targeting agent weaknesses.", | |
| "difficulty": "adversarial", | |
| "time_limit_seconds": 1800, | |
| "max_steps": 30, | |
| "grader": "server.graders.grade_adversarial", | |
| "action_schema": { | |
| "command": "Full SRE workflow: triage β investigate β mitigate β fix β verify" | |
| }, | |
| }, | |
| ] | |
| def main(host: str = "0.0.0.0", port: int = 7860): | |
| """Entry point for direct execution.""" | |
| import uvicorn | |
| uvicorn.run(app, host=host, port=port) | |
| if __name__ == "__main__": | |
| main() | |