File size: 311 Bytes
6941b34
 
 
 
d00f8d2
6941b34
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"
)