Spaces:
Sleeping
Sleeping
File size: 7,788 Bytes
09ec238 0fb8bd2 09ec238 0fb8bd2 a158b53 09ec238 0fb8bd2 8684af9 a158b53 09ec238 77b5457 09ec238 0fb8bd2 09ec238 77b5457 09ec238 77b5457 09ec238 77b5457 09ec238 0fb8bd2 09ec238 a158b53 09ec238 08fe580 8684af9 bbf592c 09ec238 04e27b3 08fe580 09ec238 08fe580 09ec238 08fe580 09ec238 | 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 | """
Inference Script Example
===================================
MANDATORY
- Before submitting, ensure the following variables are defined in your environment configuration:
API_BASE_URL The API endpoint for the LLM.
MODEL_NAME The model identifier to use for inference.
HF_TOKEN Your Hugging Face / API key.
- The inference script must be named `inference.py` and placed in the root directory of the project
- Participants must use OpenAI Client for all LLM calls using above variables
"""
import os
import re
import base64
import textwrap
from io import BytesIO
from typing import List, Optional, Dict, Any
from openai import OpenAI
import numpy as np
import json
import asyncio
from code_review import CodeReviewAction, CodeReviewObservation
from code_review.client import CodeReviewEnv
API_BASE_URL = os.getenv("API_BASE_URL") or "https://router.huggingface.co/v1"
API_KEY = os.getenv("HF_TOKEN")
MODEL_NAME = os.getenv("MODEL_NAME") or "meta-llama/Llama-3.1-8B-Instruct"
TASK_NAME = "code_review"
BENCHMARK = "code_review_benchmark"
MAX_STEPS = 3
TEMPERATURE = 0.2
MAX_TOKENS = 256
NUM_EPISODES = 16
_MAX_REWARD_PER_STEP = MAX_TOKENS * 0.1
MAX_TOTAL_REWARD = NUM_EPISODES * MAX_STEPS * _MAX_REWARD_PER_STEP
SUCCESS_SCORE_THRESHOLD = 0.1 # normalized score in [0, 1]
ACTION_PREFIX_RE = re.compile(
r"^(action|next action)\s*[:\-]\s*",
re.IGNORECASE,
)
ACTION_PATTERN = re.compile(r"[A-Za-z_]+\s*\(.*\)", re.DOTALL)
SYSTEM_PROMPT = textwrap.dedent("""
You are a senior software engineer reviewing a pull request.
You MUST follow this workflow:
Step 1:
Identify all issues in the code.
List them clearly in the comment.
Step 2:
Provide a suggested fix with corrected code.
Step 3:
Make a final decision:
- reject if any bug, security risk, or incorrect logic exists
- approve only if the code is safe and correct
Rules:
- Mention every issue explicitly
- Use precise technical language
- Write detailed comments (>30 characters)
- All string values in the JSON must use \\n for newlines, never literal line breaks
- Return ONLY raw JSON — no markdown fences, no preamble
Return ONLY JSON:
{
"action_type": "comment | suggest_fix | final_decision",
"comment": "...",
"suggested_code": "...",
"decision": "approve | reject | null"
}
""").strip()
def log_start(task: str, env: str, model: str) -> None:
print(f"[START] task={task} env={env} model={model}", flush=True)
def log_step(
step: int, action: str, reward: float, done: bool, error: Optional[str]
) -> None:
error_val = error if error else "null"
done_val = str(done).lower()
print(
f"[STEP] step={step} action={action} reward={reward:.2f} done={done_val} error={error_val}",
flush=True,
)
def log_end(success: bool, steps: int, score: float, rewards: List[float]) -> None:
rewards_str = ",".join(f"{r:.2f}" for r in rewards)
print(
f"[END] success={str(success).lower()} steps={steps} score={score:.3f} rewards={rewards_str}",
flush=True,
)
def build_history_lines(history: List[str]) -> str:
if not history:
return "None"
return "\n".join(history[-4:])
def safe_completion(client, messages):
for _ in range(3):
try:
return client.chat.completions.create(
model=MODEL_NAME,
messages=messages,
temperature=TEMPERATURE,
max_tokens=MAX_TOKENS,
)
except Exception as e:
print("Error during completion, retrying...")
print(e)
continue
return None
def build_prompt(step: int, max_steps: int, observation) -> str:
if step == 1:
instruction = (
"Carefully analyze the diff. List EVERY issue you find in the comment field. "
"Use exact technical terms (e.g. 'sql injection', 'null handling', 'hardcoded password'). "
"Set action_type to 'comment'."
"If the code looks correct with no issues, still output a comment like: 'No issues found. Code is clean.' and prepare to approve."
)
elif step == 2:
instruction = (
"Now provide the fix. Set action_type to 'suggest_fix'. "
"Write the corrected code in suggested_code. "
"Also repeat the issues in the comment field."
)
else:
instruction = (
"Make your final decision. Set action_type to 'final_decision'. "
"Set decision to 'reject' if any bug, security issue, or bad logic exists. "
"Set decision to 'approve' only if the code is clean and correct."
)
diff_text = "\n\n".join(
f"File: {d.file_name}\n{d.diff}" for d in observation.pr.diffs
)
return textwrap.dedent(f"""
Step {step}/{max_steps}
Title: {observation.pr.title}
Description: {observation.pr.description}
Code Diffs:
{diff_text}
Previous Comments:
{build_history_lines(observation.previous_comments)}
Your task: {instruction}
Return ONLY valid JSON:
{{
"action_type": "...",
"comment": "...",
"suggested_code": "...",
"decision": "approve | reject | null"
}}
""").strip()
def fallback_action():
return {
"action_type": "comment",
"comment": "fallback: invalid response",
"suggested_code": None,
"decision": None,
}
def parse_action(text: str) -> Dict[str, Any]:
if not text:
return fallback_action()
text = text.strip().replace("```json", "").replace("```", "")
try:
return json.loads(text, strict=False)
except Exception as e:
print(e)
return fallback_action()
async def run_episode(client, env):
result = await env.reset()
obs = result.observation
final_score = 0.0
for step in range(1, MAX_STEPS + 1):
if result.done:
break
prompt = build_prompt(step, MAX_STEPS, obs)
messages = [
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": prompt},
]
completion = safe_completion(client, messages) # still sync
if completion is None:
action = fallback_action()
else:
response_text = completion.choices[0].message.content or ""
action_dict = parse_action(response_text)
action = CodeReviewAction(
action_type=action_dict.get("action_type"),
comment=action_dict.get("comment"),
suggested_code=action_dict.get("suggested_code"),
decision=action_dict.get("decision"),
)
result = await env.step(action)
obs = result.observation
reward = result.reward
done = result.done
action_str = action_dict.get("action_type", "unknown")
log_step(step=step, action=action_str, reward=reward, done=done, error=None)
final_score = max(final_score, reward if reward else 0.0)
return final_score
async def main():
client = OpenAI(base_url=API_BASE_URL, api_key=API_KEY)
scores = []
async with CodeReviewEnv(base_url="https://h1manshu-code-review.hf.space") as env:
for i in range(NUM_EPISODES):
task_name = f"task_{i+1}"
log_start(task=task_name, env=BENCHMARK, model=MODEL_NAME)
env.task_index = i
score = await run_episode(client, env)
scores.append(score)
log_end(
success=score >= SUCCESS_SCORE_THRESHOLD,
steps=MAX_STEPS,
score=score,
rewards=[score],
)
if __name__ == "__main__":
asyncio.run(main())
|