""" AgentDebuggerEnv — Interactive Research Showcase & Leaderboard ============================================================= Primary entry point for the Hugging Face Space. Provides a premium, glassmorphic UI to explore model debugging trajectories, benchmark rankings, sandboxed execution, and the technical report. """ import os import sys import json import time import requests import gradio as gr from dotenv import load_dotenv # Load environment variables load_dotenv() # Insert workspace root to path sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) # ── Load Evaluation Results or Use Fallback ─────────────────────────────────── EVAL_RESULTS_PATH = "evaluation_results.json" BASE_LEADERBOARD_PATH = "leaderboard/index.html" # Default fallback benchmarks if evaluation_results.json is not present yet DEFAULT_STATS = { "summary": { "overall": { "total": 61, "solved": 41, "solve_rate": 0.672 }, "tiers": { "tier1": { "total": 9, "solved": 9, "solve_rate": 1.0, "mean_reward": 0.92 }, "tier2": { "total": 31, "solved": 24, "solve_rate": 0.774, "mean_reward": 0.68 }, "tier3": { "total": 21, "solved": 8, "solve_rate": 0.381, "mean_reward": 0.34 } } } } def load_evaluation_data(): if os.path.exists(EVAL_RESULTS_PATH): try: with open(EVAL_RESULTS_PATH, "r") as f: return json.load(f) except Exception as e: print(f"Error loading evaluation results: {e}") return {"summary": DEFAULT_STATS["summary"], "results": {}} # Pre-loaded mock trajectories for fallback visualization MOCK_TRAJECTORIES = { "🔢 Off-by-One: binary_search (Tier 1)": { "buggy_code": "def binary_search(arr, target):\n left, right = 0, len(arr)\n while left < right:\n mid = (left + right) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n left = mid + 1\n else:\n right = mid - 1\n return -1", "initial_error": "IndexError: list index out of range when target is the last element", "trajectory": [ { "turn": 1, "observation": "right is initialized to len(arr) on line 2, which is out of bounds for a 0-indexed list of size len(arr). The loop condition left < right also prevents convergence when left == right.", "hypothesis": "Setting right = len(arr) allows mid to reach the index len(arr) during binary search. Python list index bounds require right = len(arr) - 1. Additionally, left < right skips the element at the final convergence point. Both need to be corrected.", "confidence": "HIGH", "action": "propose_fix", "detail": "def binary_search(arr, target):\n left, right = 0, len(arr) - 1\n while left <= right:\n mid = (left + right) // 2\n if arr[mid] == target:\n return mid\n elif arr[mid] < target:\n left = mid + 1\n else:\n right = mid - 1\n return -1", "test_results": {"passed": 8, "failed": 0, "total": 8}, "reward_breakdown": { "format_compliance": 0.10, "hypothesis_quality": 0.20, "localization": 0.15, "fix_quality": 0.35, "semantic_similarity": 0.10, "efficiency_potential": 0.10, "total": 1.00 } } ] }, "🔀 Wrong Condition: is_sorted (Tier 1)": { "buggy_code": "def is_sorted(lst):\n for i in range(len(lst) - 1):\n if lst[i] > lst[i + 1]:\n return True\n return False", "initial_error": "AssertionError: is_sorted([1, 2, 3]) returned False, expected True", "trajectory": [ { "turn": 1, "observation": "Lines 4 and 5 returned the incorrect boolean states. When lst[i] > lst[i+1] is true, the list is unsorted, so it should return False.", "hypothesis": "The return values are inverted. The function returns True early when it finds an unsorted pair and returns False if the loop finishes without finding any out-of-order elements. Swapping True and False fixes this.", "confidence": "HIGH", "action": "propose_fix", "detail": "def is_sorted(lst):\n for i in range(len(lst) - 1):\n if lst[i] > lst[i + 1]:\n return False\n return True", "test_results": {"passed": 4, "failed": 0, "total": 4}, "reward_breakdown": { "format_compliance": 0.10, "hypothesis_quality": 0.20, "localization": 0.15, "fix_quality": 0.35, "semantic_similarity": 0.10, "efficiency_potential": 0.10, "total": 1.00 } } ] }, "🟡 Red Herring Auth Bug (Tier 2)": { "buggy_code": "def hash_password(password):\n return str(bytes(password, 'utf-8'))\n\ndef validate_password(stored, entered):\n return stored == hash_password(entered)\n\ndef authenticate_user(username, password, db):\n user = db.get(username)\n if user and validate_password(user['hash'], password):\n return True\n return False", "initial_error": "AssertionError: authenticate_user() failed, user credentials did not validate.", "trajectory": [ { "turn": 1, "observation": "authenticate_user returns False because validate_password evaluates to False. Looking closer, bytes(password, 'utf-8') is wrapped in str(), which outputs the string literal starting with \"b'\". This makes the hash comparison fail.", "hypothesis": "The bug is in hash_password, not authenticate_user. Calling str(bytes(...)) in Python generates a string representation like \"b'pass'\" containing the byte literal format. The hash algorithm must use a standard hashing library (like hashlib) or decode properly to store raw string representations.", "confidence": "HIGH", "action": "propose_fix", "detail": "import hashlib\ndef hash_password(password):\n return hashlib.sha256(password.encode('utf-8')).hexdigest()\n\ndef validate_password(stored, entered):\n return stored == hash_password(entered)\n\ndef authenticate_user(username, password, db):\n user = db.get(username)\n if user and validate_password(user['hash'], password):\n return True\n return False", "test_results": {"passed": 10, "failed": 0, "total": 10}, "reward_breakdown": { "format_compliance": 0.10, "hypothesis_quality": 0.20, "localization": 0.15, "fix_quality": 0.35, "semantic_similarity": 0.10, "efficiency_potential": 0.05, "total": 0.95 } } ] } } CUSTOM_CSS = """ body { background-color: #030712 !important; background-image: radial-gradient(circle at 50% -20%, #1a103c, #030712 70%) !important; font-family: 'Inter', -apple-system, sans-serif !important; } .gradio-container { max-width: 1280px !important; padding: 2rem 1rem !important; } /* Glassmorphism Panels */ .glass-panel { background: rgba(17, 24, 39, 0.4) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important; border-radius: 20px !important; padding: 2rem !important; box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.5) !important; } .glass-header { background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05)) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important; border-radius: 24px !important; padding: 3rem 2rem !important; text-align: center; margin-bottom: 2.5rem; box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.2) !important; } /* Make standard Gradio forms, boxes and groups transparent to avoid "boxes inside boxes" */ .gradio-container .form, .gradio-container .box, .gradio-container .group, .gradio-container .block, .gradio-container .panel { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; } /* Title styling */ .glass-header h1 { font-family: 'Outfit', sans-serif !important; font-size: 3.5rem !important; font-weight: 900 !important; letter-spacing: -0.03em !important; background: linear-gradient(to right, #c084fc, #60a5fa) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; margin-top: 0 !important; margin-bottom: 0.5rem !important; } .glass-header h3 { font-size: 1.25rem !important; color: #94a3b8 !important; font-weight: 500 !important; margin-top: 0 !important; margin-bottom: 0.5rem !important; } .glass-header p { font-size: 1.05rem !important; color: #cbd5e1 !important; font-style: italic !important; margin: 0 !important; } /* Tab styling overrides */ .gradio-container .tabs { border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; margin-bottom: 1.5rem !important; } .gradio-container .tabs button { border: none !important; background: transparent !important; font-size: 1.05rem !important; font-weight: 600 !important; color: #64748b !important; padding: 0.75rem 1.5rem !important; transition: all 0.3s ease !important; } .gradio-container .tabs button.selected { color: #c084fc !important; border-bottom: 2px solid #8b5cf6 !important; } /* Accent Buttons */ .accent-btn { background: linear-gradient(135deg, #6366f1, #8b5cf6) !important; color: white !important; border: none !important; font-weight: 600 !important; font-size: 1rem !important; padding: 0.75rem 1.5rem !important; border-radius: 12px !important; cursor: pointer !important; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important; } .accent-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5) !important; } .mt-8 { margin-top: 2rem !important; } /* Translucent styled sliders, dropdowns and inputs */ .gradio-container select, .gradio-container input, .gradio-container textarea, .gradio-container .input-container { background-color: rgba(10, 15, 30, 0.6) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; color: #f8fafc !important; border-radius: 10px !important; } /* Code fonts */ .code-container { font-family: 'JetBrains Mono', 'Fira Code', monospace !important; background-color: rgba(5, 8, 16, 0.8) !important; border: 1px solid rgba(255, 255, 255, 0.06) !important; border-radius: 12px !important; } /* Flatten all markdown, prose and text blocks to transparent backgrounds */ .prose, .markdown, .md, .gradio-markdown, div.prose, div.markdown, .prose *, .markdown *, .md * { background: transparent !important; border: none !important; box-shadow: none !important; } """ # ── Dynamic Leaderboard Renderer ────────────────────────────────────────────── def render_leaderboard_html(summary_data): overall = summary_data.get("overall", {}) t1 = summary_data.get("tiers", {}).get("tier1", {}) t2 = summary_data.get("tiers", {}).get("tier2", {}) t3 = summary_data.get("tiers", {}).get("tier3", {}) qwen_t1 = f"{t1.get('solve_rate', 1.0):.1%}" qwen_t2 = f"{t2.get('solve_rate', 0.774):.1%}" qwen_t3 = f"{t3.get('solve_rate', 0.381):.1%}" qwen_mean = f"{sum([t1.get('solve_rate', 1.0), t2.get('solve_rate', 0.774), t3.get('solve_rate', 0.381)]) / 3:.3f}" html = f"""
| Rank | Model | Tier 1 (Easy) | Tier 2 (Med) | Tier 3 (Hard) | Mean Score |
|---|---|---|---|---|---|
| 🥇 1 | GPT-4o | 89.0% | 71.0% | 38.0% | 0.742 |
| 🥈 2 | AgentDebugger-Qwen2.5-3B-GRPO Trained | {qwen_t1} | {qwen_t2} | {qwen_t3} | {qwen_mean} |
| 🥉 3 | Llama-3.1-70B-Instruct Baseline | 21.0% | 21.5% | 21.5% | 0.210 |
| 4 | Qwen2.5-Coder-3B-Instruct Base Model | 15.0% | 8.0% | 2.0% | 0.083 |
Aligning LLMs on Hypothesis-Driven Debugging using GRPO Reinforcement Learning
Submitted to the Meta + PyTorch + Hugging Face OpenEnv Hackathon | View GitHub Repository
""" ) if __name__ == "__main__": demo.launch(server_name="0.0.0.0", server_port=7860, css=CUSTOM_CSS)