Spaces:
Sleeping
Sleeping
File size: 5,661 Bytes
334d746 | 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 | """
app.py
ββββββ
FastAPI application serving CogTraceEnv as an OpenEnv HTTP API.
Endpoints:
GET / β Interactive demo UI
POST /reset β Observation
POST /step β {observation, reward, done, info}
GET /state β EnvState
GET /tasks β list of available tasks
GET /health β {"status": "ok"}
GET /openenv.yaml β serve the spec file
"""
from __future__ import annotations
import os
import random
from typing import Optional
from fastapi import FastAPI, HTTPException
from fastapi.responses import PlainTextResponse, HTMLResponse
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from cognitive_env import CogTraceEnv
from patient_simulator import PatientConfig
from models import Action
app = FastAPI(
title="CogTraceEnv",
description="OpenEnv environment for Alzheimer's cognitive monitoring",
version="1.0.0",
)
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
)
# Global env instance (single-session server)
_env: Optional[CogTraceEnv] = None
# βββ Request/Response models ββββββββββββββββββββββββββββββββββββββββββββββββββ
class ResetRequest(BaseModel):
true_stage: Optional[int] = None
episode_length: int = 30
decline_rate: float = 0.01
noise_level: float = 1.0
seed: Optional[int] = None
patient_id: str = "patient_001"
anomaly_day: Optional[int] = None
anomaly_duration: int = 5
class StepRequest(BaseModel):
action: int # 0β3
# βββ Routes βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
@app.get("/", response_class=HTMLResponse)
def serve_demo():
demo_path = os.path.join(os.path.dirname(__file__), "..", "demo.html")
if not os.path.exists(demo_path):
raise HTTPException(status_code=404, detail="demo.html not found")
with open(demo_path) as f:
return f.read()
@app.get("/health")
def health():
return {"status": "ok", "env": "CogTraceEnv-v1"}
@app.post("/reset")
def reset(req: ResetRequest = ResetRequest()):
global _env
stage = req.true_stage if req.true_stage is not None else random.randint(1, 3)
cfg = PatientConfig(
true_stage=stage,
episode_length=req.episode_length,
decline_rate=req.decline_rate,
noise_level=req.noise_level,
seed=req.seed,
patient_id=req.patient_id,
anomaly_day=req.anomaly_day,
anomaly_duration=req.anomaly_duration,
)
_env = CogTraceEnv(config=cfg)
obs = _env.reset()
return obs.model_dump()
@app.post("/step")
def step(req: StepRequest):
if _env is None:
raise HTTPException(status_code=400, detail="Call /reset first.")
try:
action = Action(action=req.action)
obs, reward, terminated, truncated, info = _env.step(action)
return {
"observation": obs.model_dump(),
"reward": float(reward) if isinstance(reward, (int, float)) else reward.model_dump(),
"done": terminated or truncated,
"terminated": terminated,
"truncated": truncated,
"info": info.model_dump(),
}
except RuntimeError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
raise HTTPException(status_code=500, detail=f"Internal Server Error: {str(e)}")
@app.get("/state")
def state():
if _env is None:
raise HTTPException(status_code=400, detail="Call /reset first.")
return _env.state().model_dump()
@app.get("/tasks")
def list_tasks():
return {
"tasks": [
{
"id": "task1_easy",
"name": "Cognitive Stage Classification",
"difficulty": "easy",
"description": (
"Given one snapshot of behavioral metrics, "
"predict the patient's Alzheimer's stage (0β4)."
),
},
{
"id": "task2_medium",
"name": "Anomaly Timing Detection",
"difficulty": "medium",
"description": (
"Observe 7 days of signals. Raise an alert on "
"the day you detect an anomaly."
),
},
{
"id": "task3_hard",
"name": "Full Triage Episode",
"difficulty": "hard",
"description": (
"Manage a 30-step episode, balancing sensitivity "
"and specificity across declining patient trajectories."
),
},
]
}
@app.get("/openenv.yaml", response_class=PlainTextResponse)
def serve_yaml():
yaml_path = os.path.join(os.path.dirname(__file__), "..", "openenv.yaml")
if not os.path.exists(yaml_path):
raise HTTPException(status_code=404, detail="openenv.yaml not found")
with open(yaml_path) as f:
return f.read()
# ββ Entry point βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
import uvicorn
uvicorn.run("server.app:app", host="0.0.0.0", port=7860, reload=False)
|