Spaces:
Sleeping
Sleeping
File size: 7,124 Bytes
711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 06aac03 711b9b5 | 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 | """Deterministic baseline runner for Bug Triage OpenEnv."""
from __future__ import annotations
import argparse
import json
import os
import sys
from collections import defaultdict
from pathlib import Path
from openai import OpenAI
PROJECT_ROOT = Path(__file__).resolve().parent.parent
if str(PROJECT_ROOT) not in sys.path:
sys.path.insert(0, str(PROJECT_ROOT))
import inference as inference_module # noqa: E402
from inference import ( # noqa: E402
MAX_STEPS,
MAX_STEPS_PER_TICKET,
MODEL_NAME as DEFAULT_MODEL_NAME,
SEED as DEFAULT_SEED,
TASKS as DEFAULT_TASKS,
_fallback_action,
_guard_action,
_request_model_action,
)
from openenv_bug_triage import BugTriageEnv # noqa: E402
from openenv_bug_triage.grader import BugTriageGrader # noqa: E402
API_BASE_URL = os.getenv("API_BASE_URL", "https://router.huggingface.co/v1")
MODEL_NAME = os.getenv("MODEL_NAME", DEFAULT_MODEL_NAME)
HF_TOKEN = os.getenv("HF_TOKEN")
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
def _as_bool(value: str | None) -> bool:
if value is None:
return False
return value.strip().lower() in {"1", "true", "yes", "on"}
def _build_client(offline_mode: bool) -> OpenAI | None:
if offline_mode:
return None
api_key = HF_TOKEN or OPENAI_API_KEY
if not api_key:
raise ValueError(
"HF_TOKEN is required for live baseline runs. "
"OPENAI_API_KEY is also accepted for direct OpenAI endpoints."
)
return OpenAI(
api_key=api_key,
base_url=API_BASE_URL,
max_retries=0,
timeout=30,
)
def run_task(
task_id: str,
seed: int,
model_name: str,
max_steps_per_ticket: int,
offline_mode: bool,
client: OpenAI | None,
) -> dict[str, object]:
"""Run one task and return reproducible grading metadata."""
env = BugTriageEnv()
obs = env.reset(task_id=task_id, seed=seed)
done = False
step_no = 0
plans: dict[str, dict] = {}
action_history_by_ticket: dict[str, list[str]] = defaultdict(list)
steps_by_ticket: dict[str, int] = defaultdict(int)
episode_actions: list[dict] = []
info: dict[str, object] = {"metrics": {}}
rewards: list[float] = []
api_disabled = offline_mode
while not done and step_no < MAX_STEPS:
step_no += 1
current_ticket_id = obs.current_ticket.ticket_id if obs.current_ticket else None
if client is not None and not api_disabled:
try:
action = _request_model_action(client, obs)
action_source = "model"
except Exception:
api_disabled = True
action = _fallback_action(obs, plans)
action_source = "fallback"
else:
action = _fallback_action(obs, plans)
action_source = "fallback"
action = _guard_action(action, obs, action_history_by_ticket, steps_by_ticket)
obs, reward, done, info = env.step(action)
rewards.append(reward.step_reward)
episode_actions.append(
{
"step": step_no,
"action": action.model_dump(exclude_none=True),
"source": action_source,
"reward": reward.step_reward,
}
)
if current_ticket_id:
action_history_by_ticket[current_ticket_id].append(action.action_type)
steps_by_ticket[current_ticket_id] += 1
if current_ticket_id and steps_by_ticket[current_ticket_id] > max_steps_per_ticket:
# The guard should already prevent this, but keeping a hard assertion
# here makes debugging easier if the policy ever regresses.
raise RuntimeError(
f"Exceeded max_steps_per_ticket for {current_ticket_id}: {steps_by_ticket[current_ticket_id]}"
)
grader = BugTriageGrader(task_id=task_id)
ground_truths = [gt.model_dump() for gt in env.current_task.ground_truths] if env.current_task else []
grader_result = grader.grade_episode(
episode_actions=episode_actions,
ground_truths=ground_truths,
metrics=info.get("metrics", {}),
)
final_state = env.state()
return {
"task_id": task_id,
"seed": seed,
"model": model_name,
"offline_mode": offline_mode,
"score": grader_result.score,
"passed": grader_result.passed,
"steps_used": final_state.steps_used,
"cumulative_reward": final_state.cumulative_reward,
"subscores": grader_result.subscores,
"mistakes": grader_result.mistakes,
"metrics": info.get("metrics", {}),
"rewards": rewards,
}
def main() -> int:
parser = argparse.ArgumentParser(description="Run deterministic baseline evaluation.")
parser.add_argument("--seed", type=int, default=DEFAULT_SEED, help="Task shuffle seed.")
parser.add_argument(
"--tasks",
nargs="+",
default=list(DEFAULT_TASKS),
help="Task ids to evaluate.",
)
parser.add_argument(
"--model",
default=MODEL_NAME,
help="Model name for live runs. Ignored in offline mode.",
)
parser.add_argument(
"--max-steps-per-ticket",
type=int,
default=MAX_STEPS_PER_TICKET,
help="Safety cap before the policy is forced to move on.",
)
parser.add_argument(
"--offline",
action="store_true",
help="Run the deterministic fallback policy without calling the API.",
)
args = parser.parse_args()
offline_mode = args.offline or _as_bool(os.getenv("OPENENV_OFFLINE"))
try:
client = _build_client(offline_mode=offline_mode)
except ValueError as exc:
print(f"Error: {exc}", file=sys.stderr)
return 1
inference_module.MODEL_NAME = args.model
results = [
run_task(
task_id=task_id,
seed=args.seed,
model_name=args.model,
max_steps_per_ticket=args.max_steps_per_ticket,
offline_mode=offline_mode,
client=client,
)
for task_id in args.tasks
]
mean_score = sum(float(item["score"]) for item in results) / len(results) if results else 0.0
payload = {
"api_base_url": API_BASE_URL,
"model": args.model,
"offline_mode": offline_mode,
"seed": args.seed,
"max_steps_per_ticket": args.max_steps_per_ticket,
"results": results,
"mean_score": mean_score,
}
artifacts_dir = PROJECT_ROOT / "artifacts"
artifacts_dir.mkdir(exist_ok=True)
output_path = artifacts_dir / "baseline_scores.json"
output_path.write_text(json.dumps(payload, indent=2), encoding="utf-8")
print("Baseline results")
for result in results:
print(
f"- {result['task_id']}: score={result['score']:.4f} "
f"passed={result['passed']} steps={result['steps_used']}"
)
print(f"Mean score: {mean_score:.4f}")
print(f"Saved artifact: {output_path}")
return 0
if __name__ == "__main__":
raise SystemExit(main())
|