Spaces:
Running
Running
File size: 18,488 Bytes
250ab26 35ea9cd 250ab26 b6d1ff0 eefb7bf 35ea9cd 250ab26 35ea9cd 250ab26 35ea9cd 250ab26 b708ea9 250ab26 35ea9cd 250ab26 35ea9cd b6d1ff0 af2ccc5 250ab26 35ea9cd 250ab26 35ea9cd 250ab26 35ea9cd eefb7bf 35ea9cd eefb7bf 35ea9cd 250ab26 35ea9cd 250ab26 eefb7bf 250ab26 35ea9cd eefb7bf 250ab26 eefb7bf 250ab26 35ea9cd eefb7bf 35ea9cd eefb7bf 35ea9cd 250ab26 35ea9cd eefb7bf 35ea9cd 250ab26 35ea9cd 250ab26 35ea9cd eefb7bf 250ab26 35ea9cd 250ab26 eefb7bf 250ab26 35ea9cd eefb7bf 35ea9cd eefb7bf 35ea9cd eefb7bf 35ea9cd eefb7bf 35ea9cd eefb7bf 35ea9cd eefb7bf 35ea9cd af2ccc5 35ea9cd af2ccc5 35ea9cd ca37eed 35ea9cd 250ab26 35ea9cd 250ab26 35ea9cd ca37eed 35ea9cd af2ccc5 ca37eed 35ea9cd af2ccc5 35ea9cd ca37eed af2ccc5 ca37eed 35ea9cd b6d1ff0 eefb7bf 35ea9cd b6d1ff0 eefb7bf b6d1ff0 eefb7bf b6d1ff0 eefb7bf 35ea9cd b6d1ff0 250ab26 35ea9cd | 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 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 | import json
import os
import re
import sys
import tempfile
from pathlib import Path
from typing import Any, Dict, List, Optional
import requests
from dotenv import load_dotenv
from openai import OpenAI
from incidents import TICKETS
load_dotenv(override=False)
API_BASE_URL = os.environ.get("API_BASE_URL") or "https://router.huggingface.co/v1"
MODEL_NAME = os.environ.get("MODEL_NAME") or "Qwen/Qwen2.5-72B-Instruct"
API_KEY = (
os.environ.get("HF_TOKEN")
or os.environ.get("API_KEY")
or os.environ.get("OPENAI_API_KEY")
or ""
)
ENV_URL = os.environ.get("ENV_URL") or "http://localhost:7860"
BENCHMARK = "incident-triage-env"
MAX_TOKENS = 300
TEMPERATURE = 0.0
OUTPUT_PATH = Path(os.environ.get("OUTPUT_PATH") or "/tmp/outputs/baseline_scores.json")
MIN_EPISODE_SCORE = 0.01
SYSTEM_PROMPT = """You are an expert SRE triaging production incidents.
You will receive an incident alert, structured context, and the expected output field.
Return ONLY a valid JSON object with this exact shape:
{"incident_id":"<id>","task_type":"<task_type>","severity":null,"root_cause":null,"action":null}
Rules:
- Populate exactly one of severity, root_cause, or action based on task_type.
- Allowed severity values: SEV1, SEV2, SEV3
- Allowed root_cause values: DATABASE, NETWORK, APPLICATION, INFRASTRUCTURE, THIRD_PARTY, UNKNOWN
- Allowed action values: ROLLBACK, SCALE_UP, RESTART_SERVICE, FAILOVER, NOTIFY_VENDOR, INVESTIGATE, NO_ACTION
- Keep incident_id and task_type identical to the observation.
- Do not return markdown, prose, or any extra keys.
"""
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()
action_clean = action.replace("\n", " ").replace("\r", "")[:100]
print(
f"[STEP] step={step} action={action_clean} reward={reward:.2f} 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"{reward:.2f}" for reward in rewards)
print(
f"[END] success={str(success).lower()} steps={steps} score={score:.2f} rewards={rewards_str}",
flush=True,
)
class EnvironmentTransport:
def reset(self, task_type: str, ticket_id: str) -> Dict[str, Any]:
raise NotImplementedError
def step(self, session_id: str, action: Dict[str, Any]) -> Dict[str, Any]:
raise NotImplementedError
def close(self) -> None:
return None
class HttpEnvironmentTransport(EnvironmentTransport):
def __init__(self, base_url: str):
self.base_url = base_url.rstrip("/")
self.session = requests.Session()
def probe(self) -> bool:
try:
response = self.session.get(f"{self.base_url}/health", timeout=5)
return response.ok
except requests.RequestException:
return False
def reset(self, task_type: str, ticket_id: str) -> Dict[str, Any]:
response = self.session.post(
f"{self.base_url}/reset",
json={"task_type": task_type, "ticket_id": ticket_id},
timeout=30,
)
self._raise_for_status_with_body(response)
return response.json()
def step(self, session_id: str, action: Dict[str, Any]) -> Dict[str, Any]:
response = self.session.post(
f"{self.base_url}/step",
params={"session_id": session_id},
json=action,
timeout=30,
)
self._raise_for_status_with_body(response)
return response.json()
def close(self) -> None:
self.session.close()
@staticmethod
def _raise_for_status_with_body(response: requests.Response) -> None:
if response.ok:
return
try:
error_body = response.json()
except ValueError:
error_body = response.text[:500]
raise requests.HTTPError(
f"{response.status_code} {response.reason} — Body: {error_body}",
response=response,
)
class LocalEnvironmentTransport(EnvironmentTransport):
def __init__(self):
try:
from fastapi.testclient import TestClient
except ImportError as exc:
raise RuntimeError(
"LocalEnvironmentTransport requires FastAPI test-client dependencies "
"(including httpx). Install them with: pip install fastapi httpx"
) from exc
try:
import app as app_module
except ImportError as exc:
raise RuntimeError(
"Could not import the local app module. Run inference.py from the project root."
) from exc
self.session = TestClient(app_module.app)
def reset(self, task_type: str, ticket_id: str) -> Dict[str, Any]:
response = self.session.post(
"/reset",
json={"task_type": task_type, "ticket_id": ticket_id},
)
response.raise_for_status()
return response.json()
def step(self, session_id: str, action: Dict[str, Any]) -> Dict[str, Any]:
response = self.session.post(
"/step",
params={"session_id": session_id},
json=action,
)
response.raise_for_status()
return response.json()
def close(self) -> None:
self.session.close()
def build_transport() -> EnvironmentTransport:
http_transport = HttpEnvironmentTransport(ENV_URL)
if http_transport.probe():
print(f"[TRANSPORT] Using HTTP transport at {ENV_URL}", flush=True)
return http_transport
http_transport.close()
print(
f"[TRANSPORT] HTTP server at {ENV_URL} is unavailable. Falling back to local in-process transport.",
flush=True,
)
return LocalEnvironmentTransport()
def create_model_client() -> Optional[OpenAI]:
if not (API_BASE_URL and API_KEY and MODEL_NAME):
return None
return OpenAI(
base_url=API_BASE_URL,
api_key=API_KEY,
timeout=20.0,
max_retries=0,
)
def build_user_prompt(observation: Dict[str, Any]) -> str:
return (
f"Incident ID: {observation['incident_id']}\n"
f"Task Type: {observation['task_type']}\n"
f"Difficulty: {observation['difficulty']}\n"
f"Task Description: {observation['task_description']}\n"
f"Expected Field: {observation['expected_field']}\n"
f"Allowed Values: {', '.join(observation['allowed_values'])}\n\n"
f"Alert:\n{observation['alert_text']}\n\n"
f"Context:\n{json.dumps(observation['context'], indent=2, sort_keys=True)}\n"
)
def extract_json(raw: str) -> Dict[str, Any]:
fenced = re.search(r"```json\s*(.*?)\s*```", raw, re.DOTALL)
if fenced:
return json.loads(fenced.group(1))
try:
return json.loads(raw)
except json.JSONDecodeError:
pass
match = re.search(r"\{.*\}", raw, re.DOTALL)
if not match:
raise ValueError("No JSON object found in model response.")
return json.loads(match.group(0))
def normalize_action(raw_action: Dict[str, Any], observation: Dict[str, Any]) -> Dict[str, Any]:
task_type = observation["task_type"]
def upper_or_none(value: Any) -> Optional[str]:
if value is None:
return None
return str(value).upper().strip()
return {
"incident_id": observation["incident_id"],
"task_type": task_type,
"severity": upper_or_none(raw_action.get("severity")) if task_type == "task1" else None,
"root_cause": upper_or_none(raw_action.get("root_cause")) if task_type == "task2" else None,
"action": upper_or_none(raw_action.get("action")) if task_type == "task3" else None,
}
def _number(value: Any) -> Optional[float]:
if isinstance(value, (int, float)):
return float(value)
if isinstance(value, str):
match = re.search(r"(\d+(?:\.\d+)?)", value)
if match:
return float(match.group(1))
return None
def predict_severity(alert_text: str, context: Dict[str, Any]) -> str:
error_rate = (
_number(context.get("error_rate_pct"))
or _number(context.get("failure_rate"))
or _number(context.get("affected_users_pct"))
)
revenue_impact = (
context.get("revenue_impact") is True
or context.get("revenue_dependency") == "high"
or "REVENUE IMPACT" in alert_text
or "REVENUE_IMPACT" in alert_text.replace(" ", "_")
)
if (
"CRITICAL" in alert_text
or "100%" in alert_text
or "REVENUE IMPACT" in alert_text
or context.get("region") == "global"
or revenue_impact
or (error_rate is not None and error_rate >= 40)
):
return "SEV1"
if (
"INTERNAL ONLY" in alert_text
or "COSMETIC" in alert_text
or "NO USER-FACING IMPACT" in alert_text
or context.get("user_impact") in {"cosmetic", False}
or context.get("impact") == "cosmetic"
):
return "SEV3"
return "SEV2"
def predict_root_cause(alert_text: str, context_text: str) -> str:
if any(keyword in alert_text or keyword in context_text for keyword in ["STRIPE", "SENDGRID", "TWILIO", "VENDOR", "WEBHOOK", "EXTERNAL API"]):
return "THIRD_PARTY"
if any(keyword in alert_text or keyword in context_text for keyword in ["PACKET LOSS", "BGP", "TRACEROUTE", "ROUTE", "CROSS-REGION", "TRANSIT HOP"]):
return "NETWORK"
if any(keyword in alert_text or keyword in context_text for keyword in ["POSTGRES", "DB ", "DATABASE", "SLOW QUERY", "CONNECTION POOL", "REPLICA", "WRITE QUERIES", "DB_CPU"]):
return "DATABASE"
if any(keyword in alert_text or keyword in context_text for keyword in ["KUBERNETES", "NODE", "POD", "CLUSTER", "NOTREADY", "MEMORY PRESSURE", "EC2", "SPOT INTERRUPTION"]):
return "INFRASTRUCTURE"
if any(keyword in alert_text or keyword in context_text for keyword in ["EXCEPTION", "STACK TRACE", "DEPLOY", "CRASH", "NULLPOINTER", "TIMEOUTEXCEPTION", "CODE"]):
return "APPLICATION"
return "UNKNOWN"
def predict_action(alert_text: str, context_text: str) -> str:
if any(keyword in alert_text or keyword in context_text for keyword in ["ROLLBACK", "IMMEDIATELY AFTER DEPLOY", "PREVIOUS_STABLE", "RECENT DEPLOY CAUSED"]):
return "ROLLBACK"
if any(keyword in alert_text or keyword in context_text for keyword in ["CPU", "QUEUE", "AUTOSCALER", "MAX_REPLICAS", "TRAFFIC SPIKE", "FLASH SALE"]):
return "SCALE_UP"
if any(keyword in alert_text or keyword in context_text for keyword in ["DEADLOCK", "HEALTH CHECK", "STUCK", "NO RESPONSE", "PROCESS NOT RESPONDING"]):
return "RESTART_SERVICE"
if any(keyword in alert_text or keyword in context_text for keyword in ["FAILOVER", "READ REPLICA", "PRIMARY DOWN", "PRIMARY RDS", "WRITES FAILING"]):
return "FAILOVER"
if any(keyword in alert_text or keyword in context_text for keyword in ["SENDGRID", "STRIPE", "TWILIO", "VENDOR"]):
return "NOTIFY_VENDOR"
if any(keyword in alert_text or keyword in context_text for keyword in ["COSMETIC", "MINOR UI GLITCH"]):
return "NO_ACTION"
return "INVESTIGATE"
def heuristic_action(observation: Dict[str, Any]) -> Dict[str, Any]:
task_type = observation["task_type"]
alert_text = observation["alert_text"].upper()
context_text = json.dumps(observation["context"]).upper().replace("_", " ")
if task_type == "task1":
return normalize_action({"severity": predict_severity(alert_text, observation["context"])}, observation)
if task_type == "task2":
return normalize_action({"root_cause": predict_root_cause(alert_text, context_text)}, observation)
return normalize_action({"action": predict_action(alert_text, context_text)}, observation)
def get_action(model_client: Optional[OpenAI], observation: Dict[str, Any]) -> Dict[str, Any]:
if model_client is None:
return heuristic_action(observation)
for attempt in range(2):
try:
completion = model_client.chat.completions.create(
model=MODEL_NAME,
messages=[
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": build_user_prompt(observation)},
],
temperature=TEMPERATURE,
max_tokens=MAX_TOKENS,
timeout=15.0,
)
content = (completion.choices[0].message.content or "").strip()
return normalize_action(extract_json(content), observation)
except Exception as exc:
print(
f"[WARN] LLM error on attempt {attempt + 1} for {observation['incident_id']}: {exc}",
flush=True,
)
continue
print(
f"[FALLBACK] Using heuristic for {observation['incident_id']} after LLM failures.",
flush=True,
)
return heuristic_action(observation)
def reward_value(step_data: Dict[str, Any]) -> float:
reward = step_data.get("reward", {})
if isinstance(reward, dict):
return float(reward.get("value", MIN_EPISODE_SCORE))
return float(reward or MIN_EPISODE_SCORE)
def active_model_name(model_client: Optional[OpenAI]) -> str:
return MODEL_NAME if model_client is not None else "deterministic-baseline"
def summarize_action(action: Dict[str, Any]) -> str:
for field in ("severity", "root_cause", "action"):
value = action.get(field)
if value is not None:
return str(value)
return "no_action"
def run_episode(
transport: EnvironmentTransport,
model_client: Optional[OpenAI],
ticket: Dict[str, Any],
) -> Dict[str, Any]:
rewards: List[float] = []
steps_taken = 0
score = MIN_EPISODE_SCORE
success = False
episode_result: Dict[str, Any]
log_start(task=ticket["incident_id"], env=BENCHMARK, model=active_model_name(model_client))
try:
reset_data = transport.reset(ticket["task_type"], ticket["incident_id"])
observation = reset_data["observation"]
session_id = reset_data.get("info", {}).get("session_id")
if not session_id:
raise RuntimeError("Environment reset did not return a session_id.")
steps_taken = 1
action = get_action(model_client, observation)
step_data = transport.step(session_id=session_id, action=action)
score = reward_value(step_data)
rewards.append(score)
success = bool(step_data.get("info", {}).get("correct", score >= 0.99))
log_step(
step=1,
action=summarize_action(action),
reward=score,
done=bool(step_data.get("done", True)),
error=None,
)
episode_result = {
"incident_id": ticket["incident_id"],
"task_type": ticket["task_type"],
"difficulty": observation.get("difficulty"),
"score": score,
"success": success,
"ground_truth": step_data.get("info", {}).get("ground_truth"),
"agent_answer": step_data.get("info", {}).get("agent_answer"),
}
except Exception as exc:
log_step(step=max(steps_taken, 1), action="error", reward=MIN_EPISODE_SCORE, done=True, error=str(exc))
score = MIN_EPISODE_SCORE
success = False
episode_result = {
"incident_id": ticket["incident_id"],
"task_type": ticket["task_type"],
"score": MIN_EPISODE_SCORE,
"success": False,
"error": str(exc),
}
finally:
log_end(success=success, steps=max(steps_taken, 1), score=score, rewards=rewards or [MIN_EPISODE_SCORE])
return episode_result
def write_results(
results: List[Dict[str, Any]],
output_path: Path = OUTPUT_PATH,
) -> None:
try:
summary = {
"benchmark": BENCHMARK,
"model": MODEL_NAME,
"episodes": len(results),
"average_score": (sum(result.get("score", 0.0) for result in results) / len(results)) if results else 0.0,
"by_task": _group_by_task(results),
"results": results,
}
serialized = json.dumps(summary, indent=2)
except (TypeError, ValueError) as exc:
print(
f"[ERROR] Results serialization failed: {exc}. Raw episode results follow.",
file=sys.stderr,
flush=True,
)
for result in results:
print(f"[RESULT] {json.dumps(result, default=str)}", flush=True)
return
try:
output_path.parent.mkdir(parents=True, exist_ok=True)
output_path.write_text(serialized)
print(f"[RESULTS] Written to {output_path}", flush=True)
except (PermissionError, OSError) as exc:
print(
f"[WARN] Could not write results file to {output_path}: {exc}",
file=sys.stderr,
flush=True,
)
fallback_path = Path(tempfile.gettempdir()) / "incident-triage-env-baseline-scores.json"
try:
fallback_path.write_text(serialized)
print(f"[RESULTS] Fallback written to {fallback_path}", flush=True)
except OSError as fallback_exc:
print(
f"[WARN] Fallback results write failed: {fallback_exc}. Emitting JSON summary to stdout.",
file=sys.stderr,
flush=True,
)
print(f"[RESULTS_JSON] {serialized}", flush=True)
def _group_by_task(results: List[Dict[str, Any]]) -> Dict[str, Dict[str, float]]:
grouped: Dict[str, List[float]] = {}
for result in results:
grouped.setdefault(result["task_type"], []).append(result.get("score", 0.0))
return {
task_type: {
"episodes": len(scores),
"average_score": (sum(scores) / len(scores)) if scores else 0.0,
}
for task_type, scores in grouped.items()
}
def main() -> None:
transport = build_transport()
try:
model_client = create_model_client()
results = [run_episode(transport, model_client, ticket) for ticket in TICKETS]
write_results(results)
finally:
transport.close()
if __name__ == "__main__":
main()
|