forked from Ikalus1988/MisakaNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbench_orchestrator.py
More file actions
410 lines (347 loc) · 13.7 KB
/
Copy pathbench_orchestrator.py
File metadata and controls
410 lines (347 loc) · 13.7 KB
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
#!/usr/bin/env python3
"""bench_orchestrator — Phase B Agent Benchmark Runner.
Feeds tasks/*.json to an LLM Agent, collects responses, and
validates via scripts/verify_task.py.
Usage:
python3 scripts/bench_orchestrator.py # run all tasks
python3 scripts/bench_orchestrator.py --max-tasks 5 # limit to 5
python3 scripts/bench_orchestrator.py --agent minimax # specify agent
python3 scripts/bench_orchestrator.py --dry-run # preview only
Agent config:
Environment variables:
- MINIMAX_API_KEY (required for --agent minimax)
- OPENAI_API_KEY (required for --agent openai)
"""
from __future__ import annotations
import json
import os
import platform
import shutil
import subprocess
import sys
import time
import urllib.request
from datetime import datetime, timezone
from pathlib import Path
REPO_ROOT = Path(__file__).resolve().parent.parent
TASKS_DIR = REPO_ROOT / "tasks"
RESULTS_DIR = REPO_ROOT / "bench_results"
sys.path.insert(0, str(REPO_ROOT))
from bench.schema.validate import validate_result
# ── Agent Config ──
AGENTS = {
"minimax": {
"api_key_env": "MINIMAX_API_KEY",
"api_url": "https://api.minimax.chat/v1/text/chatcompletion",
"model": "abab6.5s-chat",
"headers": lambda key: {
"Authorization": f"Bearer {key}",
"Content-Type": "application/json",
},
"make_payload": lambda prompt, model: {
"model": model,
"messages": [{"role": "user", "content": prompt}],
"temperature": 0.3,
"tokens_to_generate": 2048,
},
"extract_reply": lambda data: data.get("reply", "") or data.get("choices", [{}])[0].get("message", {}).get("content", ""),
},
"openai": {
"api_key_env": "OPENAI_API_KEY",
"api_url": "https://api.openai.com/v1/chat/completions",
"model": "gpt-4o-mini",
"headers": lambda key: {
"Authorization": f"Bearer {key}",
"Content-Type": "application/json",
},
"make_payload": lambda prompt, model: {
"model": model,
"messages": [{"role": "user", "content": prompt}],
"temperature": 0.3,
"max_tokens": 2048,
},
"extract_reply": lambda data: data.get("choices", [{}])[0].get("message", {}).get("content", ""),
},
}
def load_tasks(include_drafts: bool = False) -> list[dict]:
"""Load task index. Optionally include draft lessons as dynamic tasks."""
tasks = []
index = TASKS_DIR / "index.json"
if index.exists():
tasks = json.loads(index.read_text(encoding="utf-8"))
if include_drafts:
drafts_dir = REPO_ROOT / "lessons" / "drafts"
if drafts_dir.exists():
for md_file in sorted(drafts_dir.glob("*.md")):
try:
draft = _parse_draft_as_task(md_file)
if draft:
tasks.append(draft)
except Exception:
continue
return tasks
def _parse_draft_as_task(md_path: Path) -> dict | None:
"""Parse a draft lesson .md file into a bench task entry."""
content = md_path.read_text(encoding="utf-8", errors="replace")
# Extract frontmatter
fm_match = content.split("---")
if len(fm_match) < 3:
return None
try:
fm = json.loads(fm_match[1].strip())
except json.JSONDecodeError:
return None
if fm.get("status") != "draft":
return None
# Extract problem section
problem_match = content.split("## Problem")
problem = ""
if len(problem_match) > 1:
problem = problem_match[1].split("##")[0].strip()[:500]
draft_id = f"draft-{md_path.stem}"
return {
"task_id": draft_id,
"title": fm.get("title", draft_id),
"domain": fm.get("domain", "general"),
"problem": problem,
"solution": "TODO: Agent must provide solution",
"source": str(md_path.relative_to(REPO_ROOT)),
"test_cmd": "",
"draft": True,
"tombstone_hash": fm.get("tombstone_hash", ""),
}
def load_task_detail(task_id: str) -> dict:
"""Load task detail. Handles both regular tasks and draft tasks."""
# Regular task
path = TASKS_DIR / f"{task_id}.json"
if path.exists():
return json.loads(path.read_text(encoding="utf-8"))
# Draft task (task_id starts with "draft-")
if task_id.startswith("draft-"):
md_stem = task_id.replace("draft-", "")
drafts_dir = REPO_ROOT / "lessons" / "drafts"
md_path = drafts_dir / f"{md_stem}.md"
if md_path.exists():
content = md_path.read_text(encoding="utf-8", errors="replace")
fm_match = content.split("---")
fm = json.loads(fm_match[1].strip()) if len(fm_match) >= 3 else {}
problem_match = content.split("## Problem")
problem = problem_match[1].split("##")[0].strip()[:500] if len(problem_match) > 1 else ""
return {
"task_id": task_id,
"title": fm.get("title", task_id),
"domain": fm.get("domain", "general"),
"problem": problem,
"solution": "TODO: Agent must provide solution",
"source": str(md_path.relative_to(REPO_ROOT)),
"test_cmd": "",
"draft": True,
}
return {}
def build_prompt(task: dict) -> str:
"""Build a prompt that asks the Agent to analyze/solve a problem."""
return f"""You are an AI engineer debugging a real issue. Read the problem and solution below.
## Problem
{task.get('problem', 'N/A')}
## Solution (for reference)
{task.get('solution', 'N/A')[:500]}
## Task
Write a brief analysis (2-3 sentences):
1. What is the root cause of this problem?
2. What is the key fix?
3. How would you verify the fix?
Keep it concise and technical. No markdown formatting needed."""
# Note: solution is truncated to prevent the agent from just copying
def call_agent(prompt: str, agent_name: str, api_key: str) -> tuple[str, float]:
"""Call the LLM agent and return (reply_text, elapsed_seconds)."""
cfg = AGENTS[agent_name]
payload = cfg["make_payload"](prompt, cfg["model"])
headers = cfg["headers"](api_key)
data = json.dumps(payload).encode()
req = urllib.request.Request(
cfg["api_url"], data=data, headers=headers, method="POST"
)
start = time.time()
try:
with urllib.request.urlopen(req, timeout=60) as resp:
raw = resp.read()
result = json.loads(raw)
elapsed = time.time() - start
reply = cfg["extract_reply"](result)
return reply, elapsed
except Exception as e:
elapsed = time.time() - start
return f"[ERROR] {e}", elapsed
def run_verify(task_id: str) -> tuple[str, str]:
"""Run the task's test_cmd via misaka_verify."""
task = load_task_detail(task_id)
test_cmd = task.get("test_cmd", "")
if not test_cmd:
return "SKIP", "No test_cmd"
result = subprocess.run(
["python3", "scripts/verify_task.py", task_id],
capture_output=True, text=True, cwd=REPO_ROOT, timeout=30
)
if result.returncode == 0:
return "PASS", result.stdout.strip().split("\n")[-1]
else:
return "FAIL", result.stderr.strip() or result.stdout.strip()
def _git_sha() -> str:
"""Return the current revision, or an explicit unknown marker."""
try:
return subprocess.check_output(
["git", "rev-parse", "HEAD"], cwd=REPO_ROOT, text=True, timeout=5
).strip()
except (OSError, subprocess.SubprocessError):
return "unknown"
def _node_version() -> str:
"""Capture the Node runtime used by the web/worker portions of the repo."""
node = shutil.which("node")
if not node:
return "unavailable"
try:
return subprocess.check_output([node, "--version"], text=True, timeout=5).strip()
except (OSError, subprocess.SubprocessError):
return "unavailable"
def _result_document(run_id: str, agent_name: str, results: list[dict],
passed: int, total_time: float) -> dict:
"""Convert internal runner rows into the versioned result contract."""
tasks = []
for row in results:
outcome = {"PASS": "success", "FAIL": "failure", "SKIP": "error"}.get(
row["verify_status"], "error"
)
tasks.append({
"task_id": row["task_id"],
"name": row["title"] or row["task_id"],
"category": row["domain"],
"outcome": outcome,
"attempts": 1,
"duration_ms": round(row["elapsed_seconds"] * 1000, 3),
"cost_usd": 0.0,
"lessons_used": [],
"error": None if outcome == "success" else row["verify_detail"],
})
task_count = len(tasks)
result = {
"meta": {
"run_id": run_id,
"timestamp": datetime.now(timezone.utc).isoformat(),
"git_sha": _git_sha(),
"platform": platform.platform(),
"node_version": _node_version(),
"agent": agent_name,
"model": AGENTS[agent_name]["model"],
},
"tasks": tasks,
"summary": {
"total_tasks": task_count,
"success_rate": round(passed / task_count, 6) if task_count else 0.0,
"mean_attempts": 1.0 if task_count else 0.0,
"mean_duration": round(total_time * 1000 / task_count, 3) if task_count else 0.0,
"total_cost": 0.0,
},
"legacy": {
"agent": agent_name,
"model": AGENTS[agent_name]["model"],
"total_tasks": task_count,
"passed": passed,
"failed": sum(1 for row in results if row["verify_status"] == "FAIL"),
"skipped": sum(1 for row in results if row["verify_status"] == "SKIP"),
"total_api_time": round(total_time, 1),
"results": results,
},
}
validate_result(result)
return result
def main():
args = sys.argv[1:]
agent_name = "minimax"
max_tasks = None
dry_run = "--dry-run" in args
include_drafts = "--include-drafts" in args
task_ids = []
skip_next = False
for i, a in enumerate(args):
if skip_next:
skip_next = False
continue
if a == "--agent" and i + 1 < len(args):
agent_name = args[i + 1]
skip_next = True
elif a == "--max-tasks" and i + 1 < len(args):
max_tasks = int(args[i + 1])
skip_next = True
elif a in ("--dry-run", "--include-drafts"):
continue
elif not a.startswith("--"):
task_ids.append(a)
if agent_name not in AGENTS:
print(f"Unknown agent: {agent_name}. Available: {list(AGENTS.keys())}")
sys.exit(1)
api_key = os.environ.get(AGENTS[agent_name]["api_key_env"])
if not api_key and not dry_run:
print(f"Missing required environment variable for agent '{agent_name}'")
print(f" Use --dry-run to skip, or set the variable and retry")
sys.exit(1)
if dry_run:
print(f"[DRY RUN] Agent: {agent_name}, Model: {AGENTS[agent_name]['model']}")
print()
tasks = load_tasks(include_drafts=include_drafts)
if task_ids:
tasks = [t for t in tasks if t["task_id"] in task_ids]
if max_tasks:
tasks = tasks[:max_tasks]
print(f"{'='*60}")
print(f"Bench Run - Agent: {agent_name} Tasks: {len(tasks)}"
f"{' (+drafts)' if include_drafts else ''} Dry: {dry_run}")
print(f"Time: {datetime.utcnow().isoformat()}Z")
print(f"{'='*60}\n")
results = []
for idx, t in enumerate(tasks, 1):
tid = t["task_id"]
detail = load_task_detail(tid)
print(f"[{idx}/{len(tasks)}] {tid}")
# Step 1: Call Agent
if dry_run:
print(f" prompt: {detail['title'][:50]}...")
agent_reply = "(dry-run, no API call)"
elapsed = 0
else:
prompt = build_prompt(detail)
agent_reply, elapsed = call_agent(prompt, agent_name, api_key)
print(f" agent: {len(agent_reply)} chars in {elapsed:.1f}s")
# Step 2: Verify
verify_status, verify_detail = run_verify(tid)
results.append({
"task_id": tid,
"title": detail.get("title", ""),
"domain": detail.get("domain", ""),
"agent_reply_chars": len(agent_reply) if not dry_run else 0,
"elapsed_seconds": round(elapsed, 1) if not dry_run else 0,
"verify_status": verify_status,
"verify_detail": verify_detail,
})
status_icon = "PASS" if verify_status == "PASS" else ("SKIP" if verify_status == "SKIP" else "FAIL")
print(f" {status_icon} verify: {verify_status} {verify_detail[:60]}")
print()
if not dry_run:
time.sleep(1) # rate limit
# Summary
passed = sum(1 for r in results if r["verify_status"] == "PASS")
failed = sum(1 for r in results if r["verify_status"] == "FAIL")
skipped = sum(1 for r in results if r["verify_status"] == "SKIP")
total_time = sum(r["elapsed_seconds"] for r in results)
print(f"{'='*60}")
print(f"Results: {passed} passed / {failed} failed / {skipped} skipped")
print(f"Total API time: {total_time:.0f}s Avg: {total_time/len(results):.1f}s/task")
# Save results
if not dry_run:
run_id = datetime.utcnow().strftime("%Y%m%d_%H%M%S")
RESULTS_DIR.mkdir(parents=True, exist_ok=True)
report = _result_document(run_id, agent_name, results, passed, total_time)
report_path = RESULTS_DIR / f"{run_id}_{agent_name}.json"
report_path.write_text(json.dumps(report, ensure_ascii=False, indent=2), encoding="utf-8")
print(f"\nSaved: {report_path}")
if __name__ == "__main__":
main()