Spaces:
Sleeping
Sleeping
File size: 23,587 Bytes
03a7eb9 434afdf 03a7eb9 434afdf 03a7eb9 434afdf 03a7eb9 434afdf a8bc575 434afdf a8bc575 434afdf a8bc575 434afdf 18261cc 434afdf 18261cc 434afdf 18261cc 434afdf 18261cc 434afdf 18261cc 434afdf a8bc575 434afdf 18261cc 434afdf 18261cc 434afdf 18261cc 434afdf 03a7eb9 0c0a8ff 03a7eb9 0c0a8ff 03a7eb9 0c0a8ff 03a7eb9 434afdf 05d943b 03a7eb9 05d943b 03a7eb9 05d943b 434afdf 18261cc 0c0a8ff 03a7eb9 05d943b 03a7eb9 434afdf 03a7eb9 05d943b 03a7eb9 05d943b 03a7eb9 0c0a8ff 03a7eb9 434afdf 03a7eb9 | 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 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 | """
CodeArena Built-in AI Code Fixer
Uses AST analysis + pattern-based repair + TGI LLM integration.
Supports TGI (Text Generation Inference) for advanced code fixing.
"""
import ast
import re
import textwrap
import subprocess
import sys
import os
from typing import Optional
import httpx
from server.algorithm_detector import (
detect_problem_type, detect_complexity, needs_optimization,
get_optimization_hint, build_adaptive_prompt_suffix, ALGO_HINTS
)
from server.memory import store_success, retrieve_memory, log_complexity_reward
# TGI Configuration
TGI_BASE_URL = os.environ.get("TGI_BASE_URL", "http://localhost:8080")
TGI_AVAILABLE = False
def check_tgi_availability(tgi_url: str = TGI_BASE_URL) -> bool:
"""Check if TGI server is available."""
global TGI_AVAILABLE
try:
response = httpx.get(f"{tgi_url}/health", timeout=5.0)
TGI_AVAILABLE = response.status_code == 200
except Exception:
TGI_AVAILABLE = False
return TGI_AVAILABLE
def fix_with_hf_api(code: str, error_log: str = "") -> Optional[str]:
"""Use Hugging Face Serverless Inference API as a fallback."""
try:
from huggingface_hub import InferenceClient
model = "Qwen/Qwen2.5-Coder-3B-Instruct"
token = os.environ.get("HF_TOKEN")
client = InferenceClient(model=model, token=token)
prompt = f"You are an expert competitive programmer.\n\nFix the following Python code:\n- Remove syntax errors\n- Ensure correct logic\n- Optimize to O(n) if possible\n\nPrevious Error:\n{error_log}\n\nCode:\n{code}\n\nReturn ONLY the corrected code without any explanation wrapped in ```python ... ```:"
response = client.chat_completion(
messages=[{"role": "user", "content": prompt}],
max_tokens=500,
temperature=0.3
)
result = response.choices[0].message.content.strip()
import re
code_match = re.search(r'```python\n(.*?)\n```', result, re.DOTALL)
if not code_match:
code_match = re.search(r'```(.*?)```', result, re.DOTALL)
return code_match.group(1).strip() if code_match else result.replace("```", "").strip()
except Exception as e:
print(f"HF API fix error: {e}", file=sys.stderr)
return None
def fix_with_tgi(code: str, tgi_url: str = TGI_BASE_URL, error_log: str = "") -> Optional[str]:
"""Use TGI for advanced code fixing. Fallbacks to HF Serverless API if unavailable."""
if not TGI_AVAILABLE and not check_tgi_availability(tgi_url):
print("TGI unavailable. Falling back to HF Serverless Inference API...", file=sys.stderr)
return fix_with_hf_api(code, error_log)
prompt = f"You are an expert competitive programmer.\n\nFix the following Python code:\n- Remove syntax errors\n- Ensure correct logic\n- Optimize to O(n) if possible\n\nCode:\n{code}\n\nReturn ONLY the corrected code without any explanation wrapped in ```python ... ```:"
try:
response = httpx.post(
f"{tgi_url}/v1/chat/completions",
json={
"model": "tgi",
"messages": [{"role": "user", "content": prompt}],
"max_tokens": 500,
"temperature": 0.3
},
timeout=10.0
)
response.raise_for_status()
result = response.json()
fixed_code = result["choices"][0]["message"]["content"].strip()
import re
code_match = re.search(r'```python\n(.*?)\n```', fixed_code, re.DOTALL)
if not code_match:
code_match = re.search(r'```(.*?)```', fixed_code, re.DOTALL)
return code_match.group(1).strip() if code_match else fixed_code.replace("```", "").strip()
except Exception as e:
print(f"TGI fix error: {e}", file=sys.stderr)
print("Falling back to HF Serverless Inference API...", file=sys.stderr)
return fix_with_hf_api(code, error_log)
# βββ Pattern-Based Fixes βββββββββββββββββββββββββββββββββββββββββββββββββββββ
# βββ Pattern-Based Fixes βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _split_header_body(line: str) -> tuple[str, str]:
"""Split a header line into the statement header and inline body.
Example:
def foo() print('x')
if x print(x)
becomes:
('def foo()', "print('x')")
"""
stripped = line.rstrip()
# Match function or class headers with inline bodies.
inline_match = re.match(
r'^(\s*(?:def|class)\s+[A-Za-z_]\w*(?:\([^)]*\))?)(?:\s+(.+))?$',
stripped,
)
if inline_match and inline_match.group(2):
return inline_match.group(1), inline_match.group(2)
# Match conditional and loop headers with inline bodies.
inline_match = re.match(
r'^(\s*(?:if|elif|else|for|while|try|except|finally)\b[^:]*?)(?:\s+(.+))?$',
stripped,
)
if inline_match and inline_match.group(2):
return inline_match.group(1), inline_match.group(2)
return stripped, ""
def fix_syntax_errors(code: str) -> str:
"""Try to auto-fix common syntax errors."""
lines = code.split('\n')
fixed_lines: list[str] = []
for line in lines:
stripped = line.rstrip()
if re.match(r'^\s*(def |class |if |elif |else|for |while |try|except|finally)', stripped):
if stripped.endswith(':') or stripped.endswith('\\') or stripped.endswith(','):
fixed_lines.append(stripped)
continue
header, inline_body = _split_header_body(stripped)
if inline_body:
indent = re.match(r'^(\s*)', line).group(1)
fixed_lines.append(f"{header}:")
fixed_lines.append(indent + ' ' + inline_body.strip())
else:
fixed_lines.append(stripped + ':')
else:
fixed_lines.append(stripped)
return '\n'.join(fixed_lines)
def fix_wrong_builtins(code: str) -> str:
"""Fix common wrong builtin usage."""
replacements = {
r'\blenght\b': 'len',
r'\bappned\b': 'append',
r'\bpirnt\b': 'print',
r'\bprnit\b': 'print',
r'\bretrun\b': 'return',
r'\bpas\b': 'pass',
r'\bTreu\b': 'True',
r'\bFlase\b': 'False',
r'\bNoen\b': 'None',
}
for pattern, replacement in replacements.items():
code = re.sub(pattern, replacement, code)
return code
def optimize_complexity(code: str) -> str:
"""
Detect and optimize common O(N^2)/O(N^3) patterns.
- Triple nested loops on same array β Kadane's algorithm
- Bubble sort β sorted()
- Linear search in list β set/dict lookup
"""
# Detect triple nested loop (O(N^3)) β max subarray β Kadane's
if re.search(r'for\s+\w+\s+in\s+range.*:\s*\n.*for\s+\w+\s+in\s+range.*:\s*\n.*for\s+\w+\s+in\s+range', code, re.DOTALL):
# Extract function signature
match = re.match(r'(def\s+\w+\([^)]*\):)', code.strip())
if match:
sig = match.group(1)
fname = re.search(r'def\s+(\w+)', sig).group(1)
# Check if it's a max subarray problem
if 'max' in code.lower() and ('sum' in code.lower() or 'subarray' in code.lower()):
return f"""{sig}
# Optimized: Kadane's Algorithm O(N)
if not arr:
return 0
max_sum = arr[0]
current_sum = arr[0]
for num in arr[1:]:
current_sum = max(num, current_sum + num)
max_sum = max(max_sum, current_sum)
return max_sum"""
# Detect O(N^2) bubble sort β use sorted()
if re.search(r'for\s+\w+.*range.*:\s*\n.*for\s+\w+.*range.*:\s*\n.*if\s+\w+\[', code, re.DOTALL):
if 'swap' in code.lower() or ('arr[i]' in code and 'arr[j]' in code):
match = re.match(r'(def\s+\w+\([^)]*\):)', code.strip())
if match:
sig = match.group(1)
param = re.search(r'def\s+\w+\(([^)]*)\)', sig)
params = param.group(1).split(',')[0].strip() if param else 'arr'
return f"""{sig}
# Optimized: Python built-in sort O(N log N)
return sorted({params})"""
# Detect double nested loop with repeated computation
if code.count('for ') >= 2 and 'range(n)' in code and 'range(i' in code:
# Off-by-one fix for binary search
if 'binary_search' in code.lower() or ('mid' in code and 'low' in code and 'high' in code):
match = re.match(r'(def\s+\w+\([^)]*\):)', code.strip())
if match:
sig = match.group(1)
params = re.search(r'def\s+\w+\(([^)]*)\)', sig).group(1)
param_list = [p.strip() for p in params.split(',')]
arr_p = param_list[0] if len(param_list) > 0 else 'arr'
target_p = param_list[1] if len(param_list) > 1 else 'target'
return f"""{sig}
# Fixed: Correct binary search O(log N)
low, high = 0, len({arr_p}) - 1
while low <= high:
mid = (low + high) // 2
if {arr_p}[mid] == {target_p}:
return mid
elif {arr_p}[mid] < {target_p}:
low = mid + 1
else:
high = mid - 1
return -1"""
return code
def fix_logic_bugs(code: str) -> str:
"""Fix common logic bugs: off-by-one, wrong operators, etc."""
# range(n) instead of range(n+1) for inclusive
# Off-by-one in binary search
code = re.sub(r'high\s*=\s*len\((\w+)\)', r'high = len(\1) - 1', code)
# Fix wrong range in binary search: range(len(arr)) -> while low <= high
# Fix average calculation: sum / n should use len()
code = re.sub(r'return\s+total\s*/\s*n\b', 'return total / len(arr) if arr else 0', code)
# Fix division by zero risk
if 'average' in code.lower() or 'mean' in code.lower():
code = re.sub(
r'return\s+(\w+)\s*/\s*len\((\w+)\)',
r'return \1 / len(\2) if \2 else 0',
code
)
return code
def apply_all_fixes(code: str) -> str:
"""Apply all fixers in sequence."""
code = fix_wrong_builtins(code)
code = fix_syntax_errors(code)
code = fix_logic_bugs(code)
code = optimize_complexity(code)
return code
# βββ Ollama Integration (optional) βββββββββββββββββββββββββββββββββββββββββββ
def is_ollama_available(ollama_url: str = "http://localhost:11434", model: str = "llama3.2:latest") -> bool:
"""Check if Ollama is running and model exists."""
try:
import urllib.request
import json
req = urllib.request.Request(f"{ollama_url}/api/tags")
with urllib.request.urlopen(req, timeout=3) as resp:
data = json.loads(resp.read())
models = [m['name'] for m in data.get('models', [])]
return any(model.split(':')[0] in m for m in models)
except Exception:
return False
def validate_code(code: str) -> bool:
"""Safety layer to prevent 0.0 reward syntax failures."""
try:
compile(code, "<string>", "exec")
return True
except Exception:
return False
def is_inefficient(code: str) -> bool:
"""
Detect if generated code is still using brute force.
Returns True if code looks inefficient.
"""
nested_fors = code.count('for ') >= 2
has_on2_marker = 'O(n^2)' in code or 'O(n^3)' in code or 'O(N^2)' in code or 'O(N^3)' in code
# Detect triple nested loop pattern (O(N^3))
triple_loop = bool(re.search(
r'for\s+\w+.*:\s*\n\s+for\s+\w+.*:\s*\n\s+for\s+\w+', code, re.MULTILINE
))
return triple_loop or has_on2_marker
def _call_ollama(prompt: str, model: str, ollama_url: str, num_predict: int = 1024) -> str | None:
"""Send a single prompt to Ollama and return raw text response."""
import urllib.request
import json
payload = json.dumps({
"model": model,
"prompt": prompt,
"stream": False,
"options": {"temperature": 0.1, "num_predict": num_predict}
}).encode()
req = urllib.request.Request(
f"{ollama_url}/api/generate",
data=payload,
headers={"Content-Type": "application/json"},
method="POST"
)
with urllib.request.urlopen(req, timeout=60) as resp:
data = json.loads(resp.read())
return data.get("response", "").strip()
def _extract_code_and_explanation(result: str) -> tuple[str, str]:
"""Extract code block and explanation from model response."""
code_match = re.search(r'```python\n(.*?)\n```', result, re.DOTALL)
if not code_match:
code_match = re.search(r'```(.*?)```', result, re.DOTALL)
extracted_code = code_match.group(1).strip() if code_match else result.strip()
explanation = result.replace(code_match.group(0), '').strip() if code_match else "No reasoning provided."
return extracted_code, explanation
def _build_optimization_prompt(code: str, error_log: str) -> str:
"""
Build the Analysis β Optimization β Code 3-step prompt with pattern mapping.
"""
return f"""You are an expert Python algorithm engineer.
The current solution is inefficient or buggy.
Step 1: Identify why it is inefficient or incorrect (1 line only)
Step 2: Identify the optimal algorithm to solve this problem
Step 3: Rewrite the code using the optimal algorithm
Constraints:
- MUST improve time complexity
- DO NOT use brute force
- Target O(n) if possible
- If your solution is O(n^2) or worse, improve it
Common algorithm patterns:
- Maximum subarray β Kadane's algorithm (O(n))
- Subarray sum β prefix sum (O(n))
- Searching sorted array β binary search (O(log n))
- Sorting β use built-in sorted() (O(n log n))
- Sliding window β two pointers (O(n))
First think step-by-step about how to optimize the algorithm.
Then output only the final code.
Do NOT stop at identifying the issue β you MUST produce optimized code.
Previous error:
{error_log or "No errors, but the solution is suboptimal."}
CURRENT CODE:
{code}
Output your 3-step reasoning, then wrap the final optimized code in a ```python ... ``` block."""
def _build_fix_prompt(code: str, error_log: str, reward: float = 0.0, task_id: str = "") -> str:
"""Build prompt for correctness fix (when code has bugs/errors)."""
# Get algorithm hint from detector
algo_hint = get_optimization_hint(code, error_log)
# Get adaptive suffix based on current reward
adaptive_suffix = build_adaptive_prompt_suffix(reward)
# Retrieve memory for past success
memory_note = ""
if task_id:
past = retrieve_memory(task_id)
if past and past.get('reward', 0) > 0.7:
memory_note = f"\nPrevious successful solution (reward={past['reward']}):\n{past['best_code']}\nImprove upon this."
return f"""You are an expert Python debugging agent.
Follow this process and explain your reasoning:
Step 1: Identify bug type (syntax / logic / type / edge case)
Step 2: Locate exact line causing issue
Step 3: Fix only that issue and ensure tests pass
Step 4: Report the Time Complexity of your fixed code
Step 5: If complexity is O(n^2) or worse, optimize to O(n) if possible
Algorithm Detection: {algo_hint}
Common algorithm patterns:
- Maximum subarray β Kadane's algorithm (O(n))
- Subarray sum β prefix sum (O(n))
- Searching sorted array β binary search (O(log n))
- Sorting β use built-in sorted() (O(n log n))
Is your solution optimal? If not, improve it.
{adaptive_suffix}
{memory_note}
Previous attempt failed with:
{error_log or "No errors, but tests are failing."}
BUGGY CODE:
{code}
Output your step-by-step reasoning, then wrap ONLY the corrected Python code in a ```python ... ``` block."""
def fix_with_ollama(
code: str,
error_log: str = "",
ollama_url: str = "http://localhost:11434",
model: str = "llama3.2:latest",
reward: float = 0.0,
task_id: str = "",
) -> Optional[tuple[str, str]]:
"""
Fix + optimize code using Ollama.
Pipeline:
1. Generate fix (correctness + optimization prompt)
2. Self-critique: if result is still inefficient β run optimization prompt
3. Iterative refinement: repeat up to 2 full cycles
Returns (code, explanation) or None.
"""
try:
import urllib.request
import json
best_code = None
best_explanation = ""
# Iterative refinement: up to 2 full optimization passes
for iteration in range(2):
# Choose prompt: optimization-first if first run, fix-first if error exists
if iteration == 0 and error_log:
prompt = _build_fix_prompt(code, error_log, reward=reward, task_id=task_id)
else:
# Inject algorithm hint + adaptive suffix into optimization prompt
algo_hint = get_optimization_hint(best_code or code, error_log)
adaptive_suffix = build_adaptive_prompt_suffix(reward)
base_opt_prompt = _build_optimization_prompt(best_code or code, error_log)
prompt = base_opt_prompt + f"\n\nAlgorithm Detection: {algo_hint}{adaptive_suffix}"
result = None
for attempt in range(3): # 3 retries per iteration
try:
result = _call_ollama(prompt, model, ollama_url)
if not result:
continue
extracted_code, explanation = _extract_code_and_explanation(result)
if extracted_code and validate_code(extracted_code):
best_code = extracted_code
best_explanation = explanation
break # Valid code β move on
# Invalid syntax: tell model to fix it
prompt += "\n\nYour last generated code had a SyntaxError. Wrap ONLY valid Python code in ```python ... ``` blocks."
except Exception as e:
print(f"[Ollama attempt {attempt+1} failed]: {e}")
continue
if best_code is None:
return None # All retries failed
# ββ Self-Critique Loop ββββββββββββββββββββββββββββββββββββββββββββ
# If the generated code is still brute-force, force a re-optimization pass
if is_inefficient(best_code):
print(f"[Self-Critique] Iteration {iteration+1}: Code still inefficient, re-optimizing...")
# Build a targeted re-optimization prompt
critique_prompt = f"""You are a Python performance expert.
The following solution is STILL using brute force and is too slow:
```python
{best_code}
```
This is unacceptable. You MUST rewrite it using an optimal algorithm.
Common patterns:
- Maximum subarray β Kadane's algorithm (O(n))
- Subarray sum β prefix sum (O(n))
- Searching β binary search (O(log n))
Output ONLY the O(n) optimized version inside a ```python ... ``` block. No explanation needed."""
try:
critique_result = _call_ollama(critique_prompt, model, ollama_url)
if critique_result:
improved_code, improved_explanation = _extract_code_and_explanation(critique_result)
if improved_code and validate_code(improved_code):
best_code = improved_code
best_explanation = f"[Self-Critique Applied]\n{improved_explanation or best_explanation}"
except Exception as e:
print(f"[Self-Critique] Failed: {e}")
# If no longer inefficient after critique, stop early
if not is_inefficient(best_code):
break
return (best_code, best_explanation) if best_code else None
except Exception as e:
print(f"Ollama fix failed: {e}")
return None
def generate_fix(
code: str,
error_log: str = "",
tgi_url: str = TGI_BASE_URL,
use_tgi: bool = True,
ollama_url: str = "http://localhost:11434",
use_ollama: bool = True,
reward: float = 0.0,
task_id: str = "",
) -> dict:
"""
Main entry point for code fixing.
Full pipeline: Algorithm Detection + Memory β TGI/HF β Ollama β built-in fallback
"""
fixed_code = None
if use_tgi:
fixed_code = fix_with_tgi(code, tgi_url=tgi_url, error_log=error_log)
if fixed_code and validate_code(fixed_code):
complexity = detect_complexity(fixed_code)
log_complexity_reward(task_id or "sandbox", reward, complexity, step=0, method="tgi/hf")
if reward >= 0.8 and task_id:
store_success(task_id, fixed_code, reward)
return {
"fixed_code": fixed_code,
"method": "tgi",
"success": True,
"explanation": "Fixed using TGI/HF Inference API",
"complexity": complexity,
"algo_hint": get_optimization_hint(fixed_code, error_log),
}
if use_ollama and is_ollama_available(ollama_url=ollama_url):
ollama_result = fix_with_ollama(code, error_log=error_log, ollama_url=ollama_url, reward=reward, task_id=task_id)
if ollama_result:
fixed_code, explanation = ollama_result
if fixed_code and validate_code(fixed_code):
complexity = detect_complexity(fixed_code)
log_complexity_reward(task_id or "sandbox", reward, complexity, step=0, method="ollama")
if reward >= 0.8 and task_id:
store_success(task_id, fixed_code, reward)
return {
"fixed_code": fixed_code,
"method": "ollama",
"success": True,
"explanation": explanation or "Fixed using local Ollama model",
"complexity": complexity,
"algo_hint": get_optimization_hint(fixed_code, error_log),
}
# Fallback: built-in AST pattern fixer
fixed_code = apply_all_fixes(code)
if not validate_code(fixed_code):
# try a second pass with a stricter syntax fixer
fallback_code = fix_syntax_errors(code)
if validate_code(fallback_code):
fixed_code = fallback_code
else:
return {
"fixed_code": code,
"method": "builtin",
"success": False,
"explanation": "Builtin fixer could not produce valid Python code.",
"error": "Syntax fix failed; please inspect source code manually.",
"complexity": detect_complexity(code),
"algo_hint": get_optimization_hint(code),
}
complexity = detect_complexity(fixed_code)
log_complexity_reward(task_id or "sandbox", reward, complexity, step=0, method="builtin")
return {
"fixed_code": fixed_code,
"method": "builtin",
"success": True,
"explanation": "TGI unavailable. Used built-in pattern-based fixer.",
"note": "TGI unavailable. Used built-in pattern-based fixer.",
"complexity": complexity,
"algo_hint": get_optimization_hint(fixed_code),
}
|