Spaces:
Sleeping
Sleeping
File size: 12,357 Bytes
96617e2 06b0d69 9ec21a6 cbb7810 06b0d69 96617e2 9ec21a6 96617e2 cbb7810 96617e2 cbb7810 06b0d69 96617e2 9ec21a6 06b0d69 96617e2 06b0d69 96617e2 4423d13 96617e2 06b0d69 96617e2 06b0d69 96617e2 cbb7810 96617e2 cbb7810 96617e2 cbb7810 4423d13 96617e2 cbb7810 96617e2 4423d13 96617e2 cbb7810 96617e2 06b0d69 96617e2 06b0d69 96617e2 06b0d69 9728aae 96617e2 9728aae 96617e2 9728aae 96617e2 06b0d69 96617e2 9ec21a6 96617e2 06b0d69 96617e2 9ec21a6 96617e2 9ec21a6 96617e2 9ec21a6 96617e2 9ec21a6 96617e2 cbb7810 96617e2 cbb7810 96617e2 9ec21a6 cbb7810 06b0d69 96617e2 cbb7810 96617e2 cbb7810 96617e2 9ec21a6 96617e2 9ec21a6 cbb7810 96617e2 9ec21a6 96617e2 4423d13 96617e2 4423d13 96617e2 cbb7810 96617e2 4423d13 96617e2 cbb7810 96617e2 cbb7810 96617e2 cbb7810 96617e2 cbb7810 06b0d69 96617e2 9ec21a6 96617e2 9ec21a6 96617e2 9ec21a6 96617e2 9ec21a6 3424779 9ec21a6 06b0d69 9ec21a6 | 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 | """
Inference Script for API Debug Environment
===========================================
Mandatory stdout format per Phase 2 validator:
[START] task=<task_name> env=<benchmark> model=<model_name>
[STEP] step=<n> action=<action_str> reward=<0.00> done=<true|false> error=<msg|null>
[END] success=<true|false> steps=<n> score=<score> rewards=<r1,r2,...,rn>
"""
import os
import json
import asyncio
import httpx
from typing import List, Optional
from openai import OpenAI
# ββ Environment variables ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
API_BASE_URL = os.getenv("API_BASE_URL") or "https://router.huggingface.co/v1"
MODEL_NAME = os.getenv("MODEL_NAME") or "mistralai/Mistral-7B-Instruct-v0.3"
API_KEY = os.getenv("HF_TOKEN") or os.getenv("API_KEY") or "dummy"
ENV_URL = os.getenv("ENV_URL", "http://localhost:7860").rstrip("/")
BENCHMARK = "api_debug_env"
# Max steps per difficulty (mirrors openenv.yaml config so we don't rely on /state)
TASK_MAX_STEPS = {
"easy": 5,
"medium": 5,
"hard": 10,
"expert": 10,
}
DEFAULT_MAX_STEPS = 5
SUCCESS_SCORE_THRESHOLD = 0.8
# ββ LLM client βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
llm = OpenAI(base_url=API_BASE_URL, api_key=API_KEY)
SYSTEM_PROMPT = """\
You are an HTTP API debugger. You receive a broken HTTP request and must fix it to get HTTP 200.
Respond ONLY in valid JSON with exactly these fields:
{
"method": "GET",
"url": "/mock_api/...",
"headers": {},
"body": null,
"query_params": {}
}
Rules:
- method must be uppercase (GET, POST, DELETE, etc.)
- url must start with / (e.g. /mock_api/... for standard endpoints, or /openapi.json for discovery tasks)
- body must be null for GET/DELETE requests
- always include Content-Type: application/json when body is not null
- do not add any text outside the JSON
- read the task description carefully and produce the correct fix on the first attempt"""
# ββ Logging helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def log_start(task: str, env: str, model: str) -> None:
print(f"[START] task={task} env={env} model={model}", flush=True)
def log_step(step: int, action: str, reward: float, done: bool,
error: Optional[str]) -> None:
error_val = error if error else "null"
done_val = str(done).lower()
print(
f"[STEP] step={step} action={action} reward={reward:.3f}"
f" done={done_val} error={error_val}",
flush=True,
)
def log_end(success: bool, steps: int, score: float,
rewards: List[float]) -> None:
rewards_str = ",".join(f"{r:.3f}" for r in rewards)
print(
f"[END] success={str(success).lower()} steps={steps}"
f" score={score:.3f} rewards={rewards_str}",
flush=True,
)
# ββ LLM call ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def call_llm(task_description: str, broken_request: dict,
last_status: int, last_body: str, feedback: str,
history: List[str]) -> dict:
"""Ask the LLM to fix the broken request. Returns a request dict."""
history_str = "\n".join(history[-3:]) if history else "None"
user_msg = (
f"Task description:\n{task_description}\n\n"
f"Broken request (JSON):\n{json.dumps(broken_request, indent=2)}\n\n"
f"Last response status: {last_status}\n"
f"Last response body: {str(last_body)[:400]}\n\n"
f"Server feedback: {feedback}\n\n"
f"Previous attempts (latest first):\n{history_str}\n\n"
f"Return the corrected request as JSON:"
)
try:
resp = llm.chat.completions.create(
model=MODEL_NAME,
messages=[
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": user_msg},
],
max_tokens=350,
temperature=0.0, # deterministic for API debugging
)
raw = (resp.choices[0].message.content or "").strip()
# Strip markdown code fences if present
if raw.startswith("```"):
raw = raw.split("```")[1]
if raw.startswith("json"):
raw = raw[4:]
raw = raw.strip()
return json.loads(raw)
except json.JSONDecodeError:
# LLM returned non-JSON β try to extract the first {...} block
try:
start = raw.index("{")
end = raw.rindex("}") + 1
return json.loads(raw[start:end])
except Exception:
pass
except Exception:
pass
# Last-resort fallback: return broken_request unchanged so the loop
# can still emit a [STEP] line with error context
return broken_request
# ββ Environment HTTP helpers βββββββββββββββββββββββββββββββββββββββββββββββββββ
async def env_reset(client: httpx.AsyncClient, task_id: str) -> dict:
"""POST /reset and return the parsed JSON body."""
try:
resp = await client.post(
"/reset",
json={"task_id": task_id},
timeout=30,
)
resp.raise_for_status()
return resp.json()
except httpx.HTTPStatusError as exc:
raise RuntimeError(f"env_reset HTTP error {exc.response.status_code}: "
f"{exc.response.text[:200]}") from exc
except Exception as exc:
raise RuntimeError(f"env_reset failed: {exc}") from exc
async def env_step(client: httpx.AsyncClient, action: dict) -> dict:
"""POST /step and return the parsed JSON body."""
try:
resp = await client.post(
"/step",
json={"action": action},
timeout=30,
)
resp.raise_for_status()
return resp.json()
except httpx.HTTPStatusError as exc:
raise RuntimeError(f"env_step HTTP error {exc.response.status_code}: "
f"{exc.response.text[:200]}") from exc
except Exception as exc:
raise RuntimeError(f"env_step failed: {exc}") from exc
# ββ Per-task episode runner ββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def run_task(client: httpx.AsyncClient, task_id: str) -> float:
rewards: List[float] = []
steps_taken: int = 0
score: float = 0.001 # default: strictly > 0 for Phase 2
success: bool = False
history: List[str] = []
# Per-task max steps (matches openenv.yaml; /state doesn't expose these)
max_steps = TASK_MAX_STEPS.get(task_id, DEFAULT_MAX_STEPS)
log_start(task=task_id, env=BENCHMARK, model=MODEL_NAME)
try:
# ββ Reset ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
reset_resp = await env_reset(client, task_id)
obs = reset_resp.get("observation", reset_resp)
done = bool(reset_resp.get("done", False))
# ββ Step loop βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
for step in range(1, max_steps + 1):
if done:
break
# Build LLM prompt context
task_desc = obs.get("task_description", "")
broken_req = obs.get("broken_request", {})
last_status = obs.get("last_status_code", 0)
last_body = obs.get("last_response_body", "")
feedback = obs.get("step_feedback", "")
# Ask LLM to fix the request
fixed = call_llm(
task_desc, broken_req, last_status, last_body,
feedback, history,
)
# Sanitise the LLM output into a clean action dict
method = str(fixed.get("method", "GET")).upper()
url = str(fixed.get("url", "/mock_api/users"))
# Body must be None for GET/DELETE; otherwise keep what LLM says
body = fixed.get("body")
if method in ("GET", "DELETE", "HEAD"):
body = None
action = {
"method": method,
"url": url,
"headers": dict(fixed.get("headers") or {}),
"body": body if body is not None else {},
"query_params": dict(fixed.get("query_params") or {}),
}
action_str = f"{method}:{url}"
# ββ Step ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
try:
result = await env_step(client, action)
reward = float(result.get("reward", 0.001))
done = bool(result.get("done", False))
obs = result.get("observation", result)
error_str: Optional[str] = None
except RuntimeError as exc:
reward = 0.001
done = True # abort episode on env error
error_str = str(exc)[:120]
rewards.append(reward)
steps_taken = step
log_step(step=step, action=action_str, reward=reward,
done=done, error=error_str)
history.append(
f"step={step} action={action_str} "
f"status={obs.get('last_status_code', '?')} "
f"reward={reward:.3f}"
)
if done:
break
# Score: best single-step reward achieved during the episode.
# Phase 2 requires score strictly in (0, 1) β clamp away from boundaries.
_raw = max(rewards) if rewards else 0.0
score = max(0.001, min(0.999, _raw))
success = score >= SUCCESS_SCORE_THRESHOLD
except Exception as exc:
# Unexpected outer exception β still must emit [END]
print(f"[DEBUG] run_task({task_id}) outer exception: {exc}", flush=True)
if steps_taken == 0:
# We haven't emitted a single [STEP]; emit a dummy one so the
# Phase 2 validator can parse a proper log
log_step(step=1, action="error", reward=0.001, done=True,
error=str(exc)[:120])
steps_taken = 1
rewards = [0.001]
finally:
log_end(success=success, steps=steps_taken,
score=score, rewards=rewards)
return score
# ββ Entry point βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
async def main() -> None:
async with httpx.AsyncClient(base_url=ENV_URL, timeout=30.0) as client:
# Verify env is reachable β log warning but ALWAYS proceed so that
# mandatory [START]/[END] lines are emitted for every task.
try:
health = await client.get("/health", timeout=10)
health.raise_for_status()
print(f"[DEBUG] Environment reachable at {ENV_URL}", flush=True)
except Exception as exc:
print(
f"[DEBUG] Environment not reachable at {ENV_URL}: {exc}",
flush=True,
)
# Do NOT return β we must still run tasks to emit required log lines
for task_id in ["easy", "medium", "hard", "expert", "auto"]:
await run_task(client, task_id)
if __name__ == "__main__":
asyncio.run(main()) |