Spaces:
Sleeping
Sleeping
File size: 23,899 Bytes
2e11c6a 5813a84 807adf9 5813a84 985e10f 5813a84 8f66ad1 5813a84 8f66ad1 5813a84 2e11c6a 5813a84 2e11c6a 5813a84 2e11c6a 5813a84 2e11c6a 5813a84 f814100 2e11c6a 5813a84 2e11c6a 5813a84 985e10f 5813a84 f814100 5813a84 985e10f 5813a84 f469c8e 5813a84 f469c8e 5813a84 34c61c4 5813a84 985e10f 5813a84 34c61c4 f814100 34c61c4 f814100 34c61c4 f814100 5813a84 807adf9 5813a84 807adf9 5813a84 f469c8e 5813a84 985e10f f814100 985e10f 5813a84 985e10f 5813a84 f814100 5813a84 | 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 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 | """Core TraceFix-RL environment implementation."""
from __future__ import annotations
import random
import re
import uuid
from typing import Any, Dict, List, Optional, Tuple
try:
from .context import extract_error_line, get_localized_context
from .models import CodeAction, CodeObservation, TestResult
from .sandbox import check_syntax, run_code_with_tests
from tasks.tasks import ALL_TASKS, TASKS_BY_DIFFICULTY
except ImportError:
from core.context import extract_error_line, get_localized_context
from core.models import CodeAction, CodeObservation, TestResult
from core.sandbox import check_syntax, run_code_with_tests
from tasks.tasks import ALL_TASKS, TASKS_BY_DIFFICULTY
R_SUBMIT_ALL_PASS = +1.00
R_SUBMIT_FAIL = -0.20
R_SYNTAX_ERROR = -0.10
R_RUN_TESTS = +0.10
R_PER_NEW_PASS = +0.05
R_STEP_COST = -0.01
R_INVALID_LINE = -0.02
R_DESTRUCTIVE_PENALTY = -0.20
R_UNDO_RESET = -0.10
MAX_STEPS: int = 50
_SYSTEM_PROMPT = """\
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PYTHON DEBUGGING GYM β EPISODE BRIEF β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
GOAL
----
The Python source file shown below contains one or more bugs.
Your task is to find and fix every bug so that ALL unit tests pass, then
call SUBMIT to end the episode.
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
STANDARD OPERATING PROCEDURE (follow this state machine)
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
STEP 1 β ORIENT : Call VIEW_CODE to read the full file with line numbers.
STEP 2 β DIAGNOSE : Call RUN_TESTS to get the exact error message and traceback.
STEP 3 β FIX : Call REPLACE_LINES to correct the identified bug.
(Use UNDO_EDIT if the edit made things worse.)
STEP 4 β VERIFY : Call RUN_TESTS again to confirm the fix worked.
STEP 5 β REPEAT : If tests still fail, return to STEP 1 and re-read the code.
STEP 6 β SUBMIT : Once ALL tests pass, call SUBMIT.
β Do NOT call VIEW_CODE more than once in a row. Each VIEW_CODE costs -0.01.
If you have already viewed the code, call RUN_TESTS next, not VIEW_CODE again.
β THE ESCAPE HATCH RULE: If an edit results in a syntax error or an indentation error,
DO NOT try to manually fix spaces. IMMEDIATELY use UNDO_EDIT or RESET_TO_ORIGINAL.
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
AVAILABLE TOOLS (send one JSON object per turn)
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
1. VIEW_CODE β see the full file with line numbers
{{"thought": "<your reasoning>", "action_type": "VIEW_CODE"}}
2. RUN_TESTS β execute all unit tests; see pass/fail + output
{{"thought": "<your reasoning>", "action_type": "RUN_TESTS"}}
3. REPLACE_LINES β replace a contiguous block of lines (start to end, inclusive)
{{"thought": "<your reasoning>", "action_type": "REPLACE_LINES", "start_line": 3, "end_line": 5, "new_code_block": " x = 1\\n return x"}}
β start_line and end_line are 1-indexed and INCLUSIVE.
β new_code_block is a single string; separate lines with \\n (no trailing \\n).
β Indentation is syntax in Python β include the correct leading spaces on every line.
β The file grows or shrinks when the new block has more/fewer lines than the range.
β After REPLACE_LINES, call RUN_TESTS (not VIEW_CODE) to verify the fix.
4. UNDO_EDIT β revert to the state before the most recent REPLACE_LINES (-0.10 penalty)
{{"thought": "<your reasoning>", "action_type": "UNDO_EDIT"}}
Use when an edit made things worse and you want to try a different approach.
No-op (with penalty) if there is no edit history.
5. RESET_TO_ORIGINAL β restore the pristine broken code from episode start (-0.10 penalty)
{{"thought": "<your reasoning>", "action_type": "RESET_TO_ORIGINAL"}}
Last resort only. Clears all undo history. Resets context anchor.
6. SUBMIT β declare the fix complete; ends the episode
{{"thought": "<your reasoning>", "action_type": "SUBMIT"}}
Only call SUBMIT when RUN_TESTS has confirmed ALL tests pass.
The episode ends immediately on SUBMIT, pass or fail.
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
REWARD SIGNALS (visible in observation.reward_last_step)
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
+1.00 SUBMIT and all tests pass β primary objective
+0.10 RUN_TESTS called (any outcome) β gathering info is good
+0.05 Per test newly passing vs last run β incremental progress
-0.01 Every step taken β solve efficiently
-0.10 Syntax error in current code β fix broken syntax first
-0.10 UNDO_EDIT or RESET_TO_ORIGINAL β backtracking is expensive
-0.02 Invalid line range sent β use VIEW_CODE to check range
-0.20 SUBMIT with tests still failing β verify before submitting
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
EPISODE PARAMETERS
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
Task : {task_name} ({difficulty})
Unit tests : {test_count} tests β ALL must pass
Max steps : {max_steps} (episode terminates at 0 steps remaining)
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
CURRENT CODE (this is the broken version β fix it)
βββββββββββββββββββββββββββββββββββββββββββββββββββββ
{code_preview}
"""
class TraceFixRLGym:
"""Gym-style environment with reset/step methods."""
metadata = {"name": "TraceFixRL-v1", "render_modes": []}
def __init__(
self,
task_index: Optional[int] = None,
seed: Optional[int] = None,
):
self._task_index = task_index
self._rng = random.Random(seed)
self._code_lines: List[str] = []
self._task: Dict[str, Any] = {}
self._step_count: int = 0
self._prev_pass_count: int = 0
self._last_test_results: List[TestResult] = []
self._last_output: str = ""
self._last_execution_output: str = ""
self._last_edited_line: Optional[int] = None
self._episode_id: str = ""
self._done: bool = False
self._cumulative_reward: float = 0.0
self._accumulated_step_costs: float = 0.0
self._original_code: List[str] = []
self._edit_history: List[List[str]] = []
self.training_step: int = 0
self._last_run_all_passed: bool = False
def _sample_task(self, task_override=None) -> Dict[str, Any]:
"""
Evaluation-safe curriculum sampler.
Priority order:
1. task_override dict β return it directly (test/eval pinning)
2. training_step == 0 β randomly sample from ALL_TASKS (judge-safe default;
the Meta evaluator calls reset() without setting
training_step, so this must work correctly)
3. training_step > 0 β curriculum bucketing:
< 1000 β easy
< 5000 β medium
>= 5000 β hard
Falls back to any non-empty bucket if the target bucket is empty.
"""
if isinstance(task_override, dict):
return task_override
if self.training_step == 0:
if not ALL_TASKS:
raise RuntimeError("ALL_TASKS is empty β check tasks.py.")
return self._rng.choice(ALL_TASKS)
if self.training_step < 1000:
bucket = "easy"
elif self.training_step < 5000:
bucket = "medium"
else:
bucket = "hard"
pool = TASKS_BY_DIFFICULTY.get(bucket, [])
if not pool:
for b in ("easy", "medium", "hard"):
pool = TASKS_BY_DIFFICULTY.get(b, [])
if pool:
break
if not pool:
raise RuntimeError("TASKS_BY_DIFFICULTY is entirely empty β check tasks.py.")
return self._rng.choice(pool)
def reset(
self, *, task_index: Optional[int] = None
) -> Tuple[CodeObservation, str]:
"""
Wipe all episode state; select a task; return initial observation + prompt.
State isolation guarantee: every mutable field is explicitly reset here.
There is no shared state between episodes β not even the RNG advances
carry forward (the seed is fixed at __init__ time).
"""
self._task = self._sample_task(task_index)
self._code_lines = list(self._task["code"]) # deep copy β no alias
self._step_count = 0
self._prev_pass_count = 0
self._last_test_results = []
self._last_output = ""
self._last_execution_output = ""
self._last_edited_line = None # no edits yet β localized_context will be empty
self._episode_id = str(uuid.uuid4())[:8]
self._done = False
self._cumulative_reward = 0.0
self._accumulated_step_costs = 0.0
self._original_code = list(self._task["code"]) # separate copy from _code_lines
self._edit_history = []
self._last_action: Optional[str] = None
self._consecutive_count: int = 0
self._last_run_all_passed = False
obs = self._build_observation(reward=0.0)
system_prompt = _SYSTEM_PROMPT.format(
task_name = self._task["name"],
difficulty = self._task.get("difficulty", "unknown"),
test_count = len(self._task["tests"]),
max_steps = MAX_STEPS,
code_preview = obs.render_code(),
)
return obs, system_prompt
def step(
self, action: CodeAction
) -> Tuple[CodeObservation, float, bool, Dict[str, Any]]:
"""
PRINCIPLE 1 β Pure router. Accept any valid action in any order.
The only sequencing constraint is that SUBMIT ends the episode.
All other actions can be called in any combination and in any order.
step() does NOT enforce a workflow β it applies the action and returns
the resulting state for the agent to reason about.
PRINCIPLE 5 β R_STEP_COST is applied before routing so it is
impossible to take a "free" step β every turn has a cost.
"""
if self._done:
raise RuntimeError(
"step() called on a finished episode. Call reset() first."
)
self._step_count += 1
reward = R_STEP_COST # PRINCIPLE 5: cost-per-turn baseline
self._accumulated_step_costs += abs(R_STEP_COST) # Hackathon compliance
if action.action_type == self._last_action:
self._consecutive_count += 1
reward += -0.05 * self._consecutive_count
else:
self._consecutive_count = 0
self._last_action = action.action_type
atype = action.action_type
if atype == "VIEW_CODE":
reward += self._act_view_code()
elif atype == "RUN_TESTS":
reward += self._act_run_tests()
elif atype == "REPLACE_LINES":
reward += self._act_replace_lines(
action.start_line, action.end_line, action.new_code_block
)
elif atype == "UNDO_EDIT":
reward += self._act_undo_edit()
elif atype == "RESET_TO_ORIGINAL":
reward += self._act_reset_to_original()
elif atype == "SUBMIT":
reward += self._act_submit()
self._done = True
if self._step_count >= MAX_STEPS and not self._done:
self._done = True
_, results, syntax_err = run_code_with_tests(
source=self._source(),
test_callables=self._task["tests"],
)
total = len(results)
passes = 0 if syntax_err else sum(1 for t in results if t.passed)
raw = (passes / total if total > 0 else 0.0) - self._accumulated_step_costs
reward = max(0.01, min(0.98, raw))
self._last_output += (
f"\nβ Max steps ({MAX_STEPS}) reached. "
f"Auto-evaluated: {passes}/{total} tests passing. "
f"Final score: {reward:.4f}"
)
self._cumulative_reward += reward
obs = self._build_observation(reward=reward)
info = {
"episode_id": self._episode_id,
"task": self._task["name"],
"cumulative_reward": round(self._cumulative_reward, 4),
"step": self._step_count,
}
if self._done:
info["final_score"] = max(0.01, min(0.98, round(reward, 4)))
return obs, round(reward, 4), self._done, info
def _act_view_code(self) -> float:
self._last_output = (
"=== Full Source ===\n" +
"\n".join(
f"{i + 1:>3} | {line}"
for i, line in enumerate(self._code_lines)
)
)
return 0.0
def _act_run_tests(self) -> float:
output, results, syntax_err = run_code_with_tests(
source=self._source(),
test_callables=self._task["tests"],
)
self._last_test_results = results
reward = R_RUN_TESTS # information-gathering bonus (Principle 5)
total_tests = len(self._task["tests"])
current_pass = 0 if syntax_err else sum(1 for t in results if t.passed)
if syntax_err:
reward += R_SYNTAX_ERROR
self._last_run_all_passed = False
else:
new_passes = max(0, current_pass - self._prev_pass_count)
reward += new_passes * R_PER_NEW_PASS
self._prev_pass_count = current_pass
self._last_run_all_passed = (current_pass == total_tests)
if current_pass == total_tests and not syntax_err:
self._last_execution_output = (
f"Tests Passed: {total_tests}/{total_tests}.\n\n"
"SUCCESS: ALL TESTS PASSED! You are finished. You MUST now use the SUBMIT action."
)
else:
failing_messages = [
t.error_message for t in results
if (not t.passed) and t.error_message
]
error_traceback = (output or "").strip() or "\n\n".join(failing_messages).strip()
if not error_traceback:
error_traceback = "No traceback available."
self._last_execution_output = (
f"Tests Passed: {current_pass}/{total_tests}.\n\n"
f"Traceback:\n{error_traceback}"
)
self._last_output = self._last_execution_output
return reward
def _act_replace_lines(
self, start_line: int, end_line: int, new_code_block: str
) -> float:
n = len(self._code_lines)
if new_code_block is None:
new_code_block = ""
if len(new_code_block) == 0 and (end_line - start_line) > 5:
self._last_output = "Error: Cannot delete more than 5 lines at once."
return R_DESTRUCTIVE_PENALTY
if start_line > end_line:
self._last_output = (
f"Error: start_line ({start_line}) > end_line ({end_line}). "
"Inverted range rejected. Call VIEW_CODE to check the current line count."
)
return R_INVALID_LINE
if start_line < 1 or start_line > n:
self._last_output = (
f"Error: start_line {start_line} is out of range [1, {n}]. "
"Call VIEW_CODE to check the current line count."
)
return R_INVALID_LINE
if end_line < 1 or end_line > n:
self._last_output = (
f"Error: end_line {end_line} is out of range [1, {n}]. "
"Call VIEW_CODE to check the current line count."
)
return R_INVALID_LINE
start_idx = start_line - 1 # convert to 0-indexed
end_idx = end_line # exclusive upper bound for Python slice
self._edit_history.append(list(self._code_lines))
original_line = self._code_lines[start_line - 1]
original_indent = re.match(r"[ \t]*", original_line).group(0)
new_lines = self._auto_indent_replacement_block(
new_code_block=new_code_block,
original_indent=original_indent,
)
self._code_lines[start_idx:end_idx] = new_lines
new_end = start_line + len(new_lines) - 1
self._last_edited_line = min(new_end, len(self._code_lines))
replaced_count = end_line - start_line + 1
self._last_output = (
f"β Replaced lines {start_line}β{end_line} "
f"({replaced_count} line(s)) with {len(new_lines)} new line(s).\n"
f"File now has {len(self._code_lines)} lines total. "
f"Context anchored at line {self._last_edited_line}. "
"Call VIEW_CODE to re-orient before referencing line numbers."
)
return 0.0
def _auto_indent_replacement_block(
self, new_code_block: str, original_indent: str
) -> List[str]:
lines = new_code_block.split("\n")
if not lines:
return []
first_indent_match = re.match(r"[ \t]*", lines[0])
first_indent_len = len(first_indent_match.group(0)) if first_indent_match else 0
adjusted_lines: List[str] = []
for line in lines:
leading_match = re.match(r"[ \t]*", line)
leading_whitespace = leading_match.group(0) if leading_match else ""
content = line[len(leading_whitespace):]
if first_indent_len > 0:
relative_whitespace = leading_whitespace[first_indent_len:]
else:
relative_whitespace = leading_whitespace
adjusted_lines.append(f"{original_indent}{relative_whitespace}{content}")
return adjusted_lines
def _act_submit(self) -> float:
output, results, syntax_err = run_code_with_tests(
source=self._source(),
test_callables=self._task["tests"],
)
self._last_output = output
self._last_test_results = results
total = len(results)
passes = 0 if syntax_err else sum(1 for t in results if t.passed)
if syntax_err:
self._last_output += "\nβ SUBMIT rejected β syntax error in current code."
proportion = passes / total if total > 0 else 0.0
raw_score = proportion - self._accumulated_step_costs
final_score = max(0.01, min(0.98, raw_score))
if not syntax_err:
if passes == total:
self._last_output += (
f"\nπ ALL {total} TESTS PASS! Episode solved. "
f"Final score: {final_score:.4f}"
)
else:
fail_count = total - passes
self._last_output += (
f"\nβ SUBMIT β {fail_count}/{total} tests still failing. "
f"Final score: {final_score:.4f}"
)
return final_score
def _act_undo_edit(self) -> float:
"""
Mini-Git UNDO: restore the code snapshot from immediately before the
most recent REPLACE_LINES call. Applies R_UNDO_RESET penalty.
CRITICAL (Phase 2, point 4 β Context Desync Watchout):
_last_edited_line is set to None so context.py does not anchor the
localized view to a line that may no longer exist or mean the same
thing after the revert.
"""
if not self._edit_history:
self._last_output = (
"β UNDO_EDIT: no edit history β nothing to revert. "
"The code is still at its current state."
)
else:
self._code_lines = self._edit_history.pop()
self._last_output = (
f"β© UNDO_EDIT: reverted to previous state "
f"({len(self._code_lines)} lines). "
"Call VIEW_CODE to inspect the restored file."
)
self._last_edited_line = None
return R_UNDO_RESET
def _act_reset_to_original(self) -> float:
"""
Mini-Git RESET: restore the pristine episode-start code and clear the
entire undo stack. Applies R_UNDO_RESET penalty.
CRITICAL (Phase 2, point 4 β Context Desync Watchout):
_last_edited_line is set to None to prevent context.py from anchoring
to a ghost line in the freshly-restored original code.
"""
self._code_lines = list(self._original_code) # deep copy
self._edit_history = [] # clear stack
self._last_output = (
f"βΊ RESET_TO_ORIGINAL: code restored to pristine episode state "
f"({len(self._code_lines)} lines). All undo history cleared. "
"Call VIEW_CODE to inspect the file."
)
self._last_edited_line = None
return R_UNDO_RESET
def _source(self) -> str:
return "\n".join(self._code_lines)
def _build_observation(self, reward: float) -> CodeObservation:
syntax_valid, _ = check_syntax(self._source())
context_anchor = self._last_edited_line
if self._last_action == "RUN_TESTS" and not self._last_run_all_passed:
extracted_line = extract_error_line(self._last_execution_output)
if extracted_line is not None:
context_anchor = extracted_line
localized = get_localized_context(self._code_lines, context_anchor)
return CodeObservation(
code_dict = {
idx + 1: line for idx, line in enumerate(self._code_lines)
},
localized_context = localized,
last_execution_output = (
self._last_execution_output
if self._last_action == "RUN_TESTS"
else self._last_output
),
syntax_error = not syntax_valid,
test_results = list(self._last_test_results),
step_count = self._step_count,
steps_remaining = max(0, MAX_STEPS - self._step_count),
reward_last_step = round(reward, 4),
done = self._done,
info = {
"episode_id": self._episode_id,
"task_name": self._task.get("name", ""),
"task_difficulty": self._task.get("difficulty", ""),
},
)
|