"""FastAPI server exposing the VisionCoderEnvironment via the OpenEnv HTTP API. Endpoints: POST /reset → Observation (start new episode; ?difficulty=easy|medium|hard|mixed) POST /step → Observation (submit HTML action; session_id in body) POST /render → RenderResponse (render HTML to image, no reward) GET /state → State (last session metadata) DELETE /close → 204 (signal end of session) GET /health → 200 (liveness probe) """ from __future__ import annotations import logging import os from pathlib import Path from typing import Optional from fastapi import FastAPI, HTTPException, Query from fastapi.responses import JSONResponse, RedirectResponse from fastapi.staticfiles import StaticFiles from openenv.models import Action, Observation, RenderRequest, RenderResponse, State from openenv.server.environment import VisionCoderEnvironment, DEFAULT_MAX_STEPS, DEFAULT_LOW_RES, DEFAULT_FULL_RES logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) app = FastAPI( title="VisionCoder OpenEnv", description="Screenshot-to-HTML RL environment — multi-step, multi-agent (OpenEnv-compatible)", version="2.0.0", ) def _parse_res(env_var: str, default: tuple) -> tuple: val = os.environ.get(env_var, "") if val: try: w, h = val.split("x") return (int(w), int(h)) except Exception: logger.warning("Invalid %s=%r, using default %s", env_var, val, default) return default _env = VisionCoderEnvironment( max_steps=int(os.environ.get("MAX_STEPS", DEFAULT_MAX_STEPS)), low_res=_parse_res("LOW_RES", DEFAULT_LOW_RES), full_res=_parse_res("FULL_RES", DEFAULT_FULL_RES), ) @app.get("/") def index(): return RedirectResponse(url="/demo/", status_code=302) @app.get("/api") def api_info(): return { "name": "VisionCoder OpenEnv", "version": "2.0.0", "description": "Screenshot-to-HTML RL environment — multi-step, multi-agent (OpenEnv-compatible)", "endpoints": { "POST /reset?difficulty=easy|medium|hard|mixed": "Start a new episode", "POST /step": "Submit HTML, get reward + renders", "POST /render": "Render HTML to image (no reward)", "GET /state": "Last session metadata", "GET /health": "Liveness probe", }, "reward_weights": { "format": 0.5, "validity": 0.5, "structural": 0.5, "text_block": 3.0, "position": 1.0, "color": 1.5, "clip": 2.5, "ssim": 1.5, }, "links": { "github": "https://github.com/amaljoe/vision-coder-openenv", "space": "https://huggingface.co/spaces/amaljoe88/vision-coder-openenv", }, } @app.get("/health") def health(): return {"status": "ok"} @app.post("/reset", response_model=Observation) def reset( difficulty: str = Query(default="mixed", description="Task difficulty: easy | medium | hard | mixed"), max_steps: Optional[int] = Query(default=None, description="Max turns for this episode (overrides server default)"), ) -> Observation: """Start a new episode. Returns session_id and the reference screenshot.""" if difficulty not in ("easy", "medium", "hard", "mixed"): raise HTTPException(status_code=422, detail=f"Invalid difficulty: {difficulty!r}") if max_steps is not None and max_steps < 1: raise HTTPException(status_code=422, detail="max_steps must be >= 1") try: obs = _env.reset(difficulty=difficulty, max_steps=max_steps) logger.info( "Session %s started — difficulty=%s sample=%d", obs.session_id, difficulty, obs.metadata.get("sample_index", 0), ) return obs except Exception as exc: logger.exception("reset() failed") raise HTTPException(status_code=500, detail=str(exc)) from exc @app.post("/step", response_model=Observation) def step(action: Action) -> Observation: """Submit HTML. Returns reward, render_low, render_full, and done flag.""" try: obs = _env.step(action) rewards = obs.metadata.get("rewards", {}) logger.info( "Session %s step %d/%d — total=%.4f (fmt=%.2f val=%.2f struct=%.2f clip=%.2f) done=%s", obs.session_id, obs.metadata.get("step_count", 1), obs.metadata.get("max_steps", 5), rewards.get("total", 0.0), rewards.get("format", 0.0), rewards.get("validity", 0.0), rewards.get("structural", 0.0), rewards.get("clip", 0.0), obs.done, ) return obs except RuntimeError as exc: raise HTTPException(status_code=400, detail=str(exc)) from exc except Exception as exc: logger.exception("step() failed") raise HTTPException(status_code=500, detail=str(exc)) from exc @app.post("/render", response_model=RenderResponse) def render(request: RenderRequest) -> RenderResponse: """Render HTML to images without scoring. Used by the Developer agent's tool call.""" try: return _env.render(request) except Exception as exc: logger.exception("render() failed") raise HTTPException(status_code=500, detail=str(exc)) from exc @app.get("/state", response_model=State) def state() -> State: """Return metadata for the most recently created session.""" return _env.state @app.post("/reset_dataset", status_code=200) def reset_dataset() -> dict: """Reset dataset indices to 0 for all difficulties. Used by benchmarks to replay the same samples.""" _env._dataset_indices = {"easy": 0, "medium": 0, "hard": 0, "mixed": 0} logger.info("Dataset indices reset to 0.") return {"status": "ok"} @app.delete("/close", status_code=204) def close() -> None: """Signal end of session (no-op for single-instance server).""" logger.info("Session closed by client.") _docs_dir = Path(__file__).resolve().parent.parent.parent / "docs" if _docs_dir.is_dir(): app.mount("/demo", StaticFiles(directory=_docs_dir, html=True), name="demo") def main() -> None: import os import uvicorn port = int(os.environ.get("PORT", 7860)) uvicorn.run("openenv.server.app:app", host="0.0.0.0", port=port) if __name__ == "__main__": main()