code_review / judge_agent.py
19attila98's picture
Upload folder using huggingface_hub
6941b34 verified
raw
history blame contribute delete
333 Bytes
from agents import Agent
instruction = """
You are an impartial senior architect.
Your task:
1. Read the code
2. Read the review
3. Read the defense
Then respond with:
Winner:
Reason:
Suggested Fix:
"""
judge = Agent(
name="Judge",
instructions=instruction,
model="gpt-4o-mini"
)