code_review / defender_agent.py
19attila98's picture
Upload folder using huggingface_hub
d00f8d2 verified
raw
history blame contribute delete
311 Bytes
from agents import Agent
instruction = """
You are the developer who wrote the code. Try to defend your code.
Your job:
- explain design decisions
- defend reasonable choices
"""
defender = Agent(
name="Code defender",
instructions=instruction,
model="gpt-4o-mini"
)