-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinference.py
More file actions
345 lines (273 loc) · 12.5 KB
/
Copy pathinference.py
File metadata and controls
345 lines (273 loc) · 12.5 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
#!/usr/bin/env python3
"""
inference.py - Code Debug Environment Baseline Agent
Required env vars: API_BASE_URL, MODEL_NAME, HF_TOKEN
Usage:
python inference.py
python inference.py --url https://Souravdanyal-code-debug-env.hf.space
python inference.py --difficulty easy
STDOUT FORMAT (strictly required by evaluator - plaintext):
[START] task=<id> env=<benchmark> model=<model>
[STEP] step=<n> action=<str> reward=<0.00> done=<true|false> error=<msg|null>
[END] success=<true|false> steps=<n> score=<0.00> rewards=<r1,r2,...>
"""
import os, sys, json, time, argparse, requests, re
from openai import OpenAI
from typing import List, Optional
# Load .env file if it exists
try:
from dotenv import load_dotenv
load_dotenv()
except ImportError:
pass # dotenv not installed, will use system env vars
# ── Config ────────────────────────────────────────────────────────────────────
API_BASE_URL = os.getenv("API_BASE_URL", "https://api.groq.com/openai/v1")
MODEL_NAME = os.getenv("MODEL_NAME", "llama-3.1-8b-instant")
HF_TOKEN = os.getenv("HF_TOKEN")
HF_TOKEN_SOURCE = "HF_TOKEN"
if not HF_TOKEN:
HF_TOKEN = os.getenv("API_KEY")
HF_TOKEN_SOURCE = "API_KEY"
if not HF_TOKEN:
HF_TOKEN = os.getenv("hf_token")
HF_TOKEN_SOURCE = "hf_token"
LOCAL_IMAGE_NAME = os.getenv("LOCAL_IMAGE_NAME")
ENV_URL = os.getenv("ENV_URL")
BENCHMARK = "code-debug-env"
MAX_STEPS = 5
SUCCESS_SCORE_THRESHOLD = 0.5
client = OpenAI(api_key=HF_TOKEN or "dummy", base_url=API_BASE_URL)
# ── Logging — STRICT PLAINTEXT FORMAT ────────────────────────────────────────
def _format_bool(value: bool) -> str:
return "true" if value else "false"
def _normalize_token(value: str) -> str:
return re.sub(r"\s+", " ", str(value)).strip()
def _format_error(error: Optional[str]) -> str:
if error is None:
return "null"
text = str(error).replace("\r", "\\r").replace("\n", "\\n")
return text if text else "null"
def _format_rewards(rewards: List[float]) -> str:
return ",".join(f"{round(r, 2):.2f}" for r in rewards)
def log_start(task_id: str, env: str, model: str) -> None:
print(
f"[START] task={_normalize_token(task_id)} env={_normalize_token(env)} model={_normalize_token(model)}",
flush=True,
)
def log_step(step: int, action: str, reward: float, done: bool, error: Optional[str]) -> None:
print(
f"[STEP] step={step} action={_normalize_token(action)} reward={round(reward, 2):.2f} "
f"done={_format_bool(done)} error={_format_error(error)}",
flush=True,
)
def log_end(success: bool, steps: int, score: float, rewards: List[float]) -> None:
print(
f"[END] success={_format_bool(success)} steps={steps} score={round(score, 2):.2f} "
f"rewards={_format_rewards(rewards)}",
flush=True,
)
# ── Env client ────────────────────────────────────────────────────────────────
def env_reset(url: str, difficulty: str) -> dict:
r = requests.post(f"{url}/reset", json={"difficulty": difficulty}, timeout=30)
r.raise_for_status()
return r.json()
def env_step(url: str, fixed_code: str, explanation: Optional[str] = None) -> dict:
payload = {"fixed_code": fixed_code}
if explanation:
payload["explanation"] = explanation
r = requests.post(f"{url}/step", json=payload, timeout=30)
r.raise_for_status()
return r.json()
# ── LLM ──────────────────────────────────────────────────────────────────────
SYSTEM_PROMPT = """You are an expert Python debugging agent.
RESPONSE FORMAT — JSON only, no markdown fences, no extra text:
{"fixed_code": "<complete Python function with all imports>", "explanation": "<for hard tasks only>"}
RULES:
- Return the COMPLETE function including all imports (e.g. from collections import deque)
- fixed_code must be valid, executable Python
- For hard tasks: explanation MUST mention the algorithmic concepts from the instructions
COMMON BUG PATTERNS — memorize these:
- RIGHT rotate list by k: lst[-k:] + lst[:-k] (NOT lst[k:] + lst[:k] which is LEFT rotate)
- LEFT rotate list by k: lst[k:] + lst[:k]
- BFS/graph missing visited: add visited=set([start]) before queue, check before appending
- 0/1 Knapsack: iterate BACKWARD range(capacity, weight-1, -1) NOT forward
- Binary search boundary: often return high not low, or initial high=n//2 not n
- Wrong operator: target-n not target+n for complement
- Off-by-one: lst[1] for second element not lst[2]
IMPORTANT: If feedback shows TimeoutError, you have infinite loop. Add visited set.
IMPORTANT: If Expected shows right-rotated list, use lst[-k:] + lst[:-k].
"""
def _parse_llm_response(raw: str, buggy_code: str) -> dict:
"""Robustly parse LLM response handling control chars and malformed JSON."""
# Remove markdown fences
if "```json" in raw:
raw = raw.split("```json")[1].split("```")[0].strip()
elif "```" in raw:
parts = raw.split("```")
if len(parts) >= 2:
raw = parts[1].strip()
if raw.startswith("json"):
raw = raw[4:].strip()
# Find JSON boundaries
start = raw.find("{")
end = raw.rfind("}") + 1
if start >= 0 and end > start:
raw = raw[start:end]
# Try direct parse
try:
parsed = json.loads(raw)
return {
"fixed_code": parsed.get("fixed_code", ""),
"explanation": parsed.get("explanation"),
}
except json.JSONDecodeError:
pass
# Fix literal control characters inside JSON strings
try:
fixed = re.sub(r'(?<!\\)\n', r'\\n', raw)
fixed = re.sub(r'(?<!\\)\t', r'\\t', fixed)
fixed = re.sub(r'(?<!\\)\r', r'\\r', fixed)
parsed = json.loads(fixed)
code = parsed.get("fixed_code", "")
if "\\n" in code:
code = code.replace("\\n", "\n").replace("\\t", "\t")
return {"fixed_code": code, "explanation": parsed.get("explanation")}
except json.JSONDecodeError:
pass
# Last resort: regex extraction
code_match = re.search(r'"fixed_code"\s*:\s*"((?:[^"\\]|\\.)*)"', raw, re.DOTALL)
exp_match = re.search(r'"explanation"\s*:\s*"((?:[^"\\]|\\.)*)"', raw, re.DOTALL)
if code_match:
code = code_match.group(1).replace("\\n", "\n").replace("\\t", "\t")
exp = exp_match.group(1).replace("\\n", "\n") if exp_match else None
return {"fixed_code": code, "explanation": exp}
# Complete fallback
return {"fixed_code": buggy_code, "explanation": None}
def call_llm(
buggy_code: str,
instructions: str,
difficulty: str,
feedback: Optional[str] = None,
attempt: int = 1,
prev_code: Optional[str] = None,
) -> dict:
content = (
f"Difficulty: {difficulty}\n"
f"Instructions: {instructions}\n\n"
f"Buggy code:\n```python\n{buggy_code}\n```\n"
)
if feedback and attempt > 1:
content += (
f"\nPREVIOUS FIX FAILED. Feedback:\n{feedback}\n\n"
f"Your previous code:\n```python\n{prev_code or ''}\n```\n"
"ANALYZE THE FEEDBACK CAREFULLY:\n"
"- Look at Input/Expected/Got for each failing test\n"
"- If Got shows wrong rotation direction: use lst[-k:] + lst[:-k] for RIGHT rotate\n"
"- If TimeoutError: add visited=set([start]) before queue in graph code\n"
"- Try a COMPLETELY DIFFERENT fix.\n"
)
if difficulty == "hard":
hint_match = re.search(r'[Mm]ention[:\s]+([^.]+?)(?:\.|$)', instructions)
if hint_match:
hints = hint_match.group(1).strip()
content += f"\nFor explanation, you MUST mention these concepts: {hints}\n"
content += "Explanation counts for 30% of reward — make it detailed and specific.\n"
try:
resp = client.chat.completions.create(
model=MODEL_NAME,
messages=[
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": content},
],
max_tokens=1500,
temperature=0.1 if attempt == 1 else 0.4,
)
raw = resp.choices[0].message.content.strip()
return _parse_llm_response(raw, buggy_code)
except Exception as e:
print(f"# LLM error: {e}", file=sys.stderr)
return {"fixed_code": buggy_code, "explanation": None}
# ── Episode ───────────────────────────────────────────────────────────────────
def run_episode(env_url: str, difficulty: str) -> tuple:
"""Run one full episode. Returns (success, steps_taken, rewards)."""
data = env_reset(env_url, difficulty)
obs = data["observation"]
task_id = obs["task_id"]
buggy_code = obs["buggy_code"]
instructions = obs["instructions"]
log_start(task_id, BENCHMARK, MODEL_NAME)
rewards: List[float] = []
steps_taken = 0
success = False
last_feedback = None
last_code = None
try:
for attempt in range(1, MAX_STEPS + 1):
steps_taken = attempt
action = call_llm(buggy_code, instructions, difficulty, last_feedback, attempt, last_code)
code = action.get("fixed_code") or ""
last_code = code
reward: float = 0.0
done: bool = False
step_error: Optional[str] = None
try:
result = env_step(env_url, code, action.get("explanation"))
reward = result.get("reward", 0.0)
done = result.get("done", False)
obs_r = result.get("observation", {})
if isinstance(obs_r, dict):
last_feedback = obs_r.get("feedback", "")
step_error = obs_r.get("last_action_error") or obs_r.get("error")
except Exception as e:
step_error = str(e)
log_step(attempt, f"fix_{difficulty}_attempt{attempt}", reward, done, step_error)
rewards.append(reward)
if reward >= 1.0:
success = True
if done:
break
finally:
score = max(rewards) if rewards else 0.0
score = min(max(score, 0.0), 1.0)
success = success or (score >= SUCCESS_SCORE_THRESHOLD)
log_end(success, steps_taken, score, rewards)
return success, steps_taken, rewards
# ── Main ──────────────────────────────────────────────────────────────────────
def main():
parser = argparse.ArgumentParser(description="Code Debug Environment Baseline Agent")
parser.add_argument("--url", default=ENV_URL or "http://localhost:7860")
parser.add_argument(
"--difficulty", default=None,
choices=["easy", "medium", "hard", "all"],
)
args = parser.parse_args()
url = args.url.rstrip("/")
if not HF_TOKEN:
print(
"# Missing API key. Set HF_TOKEN (or API_KEY / lowercase hf_token).",
file=sys.stderr, flush=True,
)
sys.exit(1)
print(f"# Using API key from {HF_TOKEN_SOURCE}", file=sys.stderr, flush=True)
# Health check
try:
requests.get(f"{url}/health", timeout=10).raise_for_status()
print(f"# Environment healthy at {url}", file=sys.stderr, flush=True)
except Exception as e:
print(f"# Health check failed: {e}", file=sys.stderr)
sys.exit(1)
diffs = ["easy", "medium", "hard"] if args.difficulty in (None, "all") else [args.difficulty]
all_rewards: List[float] = []
successes: List[bool] = []
for d in diffs:
ok, _, rewards = run_episode(url, d)
all_rewards.extend(rewards)
successes.append(ok)
time.sleep(0.5)
avg = round(sum(all_rewards) / len(all_rewards), 3) if all_rewards else 0.0
print(
f"# SUMMARY: {sum(successes)}/{len(diffs)} tasks solved | avg_reward={avg}",
file=sys.stderr, flush=True,
)
if __name__ == "__main__":
main()