forked from openai/openai-agents-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_global_hooks.py
373 lines (329 loc) · 13 KB
/
test_global_hooks.py
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
from __future__ import annotations
import json
from collections import defaultdict
from typing import Any
import pytest
from typing_extensions import TypedDict
from agents import Agent, RunContextWrapper, RunHooks, Runner, TContext, Tool
from .fake_model import FakeModel
from .test_responses import (
get_final_output_message,
get_function_tool,
get_function_tool_call,
get_handoff_tool_call,
get_text_message,
)
class RunHooksForTests(RunHooks):
def __init__(self):
self.events: dict[str, int] = defaultdict(int)
def reset(self):
self.events.clear()
async def on_agent_start(
self, context: RunContextWrapper[TContext], agent: Agent[TContext]
) -> None:
self.events["on_agent_start"] += 1
async def on_agent_end(
self,
context: RunContextWrapper[TContext],
agent: Agent[TContext],
output: Any,
) -> None:
self.events["on_agent_end"] += 1
async def on_handoff(
self,
context: RunContextWrapper[TContext],
from_agent: Agent[TContext],
to_agent: Agent[TContext],
) -> None:
self.events["on_handoff"] += 1
async def on_tool_start(
self,
context: RunContextWrapper[TContext],
agent: Agent[TContext],
tool: Tool,
) -> None:
self.events["on_tool_start"] += 1
async def on_tool_end(
self,
context: RunContextWrapper[TContext],
agent: Agent[TContext],
tool: Tool,
result: str,
) -> None:
self.events["on_tool_end"] += 1
@pytest.mark.asyncio
async def test_non_streamed_agent_hooks():
hooks = RunHooksForTests()
model = FakeModel()
agent_1 = Agent(name="test_1", model=model)
agent_2 = Agent(name="test_2", model=model)
agent_3 = Agent(
name="test_3",
model=model,
handoffs=[agent_1, agent_2],
tools=[get_function_tool("some_function", "result")],
)
agent_1.handoffs.append(agent_3)
model.set_next_output([get_text_message("user_message")])
output = await Runner.run(agent_3, input="user_message", hooks=hooks)
assert hooks.events == {"on_agent_start": 1, "on_agent_end": 1}, f"{output}"
hooks.reset()
model.add_multiple_turn_outputs(
[
# First turn: a tool call
[get_function_tool_call("some_function", json.dumps({"a": "b"}))],
# Second turn: a message and a handoff
[get_text_message("a_message"), get_handoff_tool_call(agent_1)],
# Third turn: text message
[get_text_message("done")],
]
)
await Runner.run(agent_3, input="user_message", hooks=hooks)
assert hooks.events == {
# We only invoke on_agent_start when we begin executing a new agent.
# Although agent_3 runs two turns internally before handing off,
# that's one logical agent segment, so on_agent_start fires once.
# Then we hand off to agent_1, so on_agent_start fires for that agent.
"on_agent_start": 2,
"on_tool_start": 1, # Only one tool call
"on_tool_end": 1, # Only one tool call
"on_handoff": 1, # Only one handoff
"on_agent_end": 1, # Should always have one end
}, f"got unexpected event count: {hooks.events}"
hooks.reset()
model.add_multiple_turn_outputs(
[
# First turn: a tool call
[get_function_tool_call("some_function", json.dumps({"a": "b"}))],
# Second turn: a message, another tool call, and a handoff
[
get_text_message("a_message"),
get_function_tool_call("some_function", json.dumps({"a": "b"})),
get_handoff_tool_call(agent_1),
],
# Third turn: a message and a handoff back to the orig agent
[get_text_message("a_message"), get_handoff_tool_call(agent_3)],
# Fourth turn: text message
[get_text_message("done")],
]
)
await Runner.run(agent_3, input="user_message", hooks=hooks)
assert hooks.events == {
# agent_3 starts (fires on_agent_start), runs two turns and hands off.
# agent_1 starts (fires on_agent_start), then hands back to agent_3.
# agent_3 starts again (fires on_agent_start) to complete execution.
"on_agent_start": 3,
"on_tool_start": 2, # 2 tool calls
"on_tool_end": 2, # 2 tool calls
"on_handoff": 2, # 2 handoffs
"on_agent_end": 1, # Should always have one end
}, f"got unexpected event count: {hooks.events}"
hooks.reset()
@pytest.mark.asyncio
async def test_streamed_agent_hooks():
hooks = RunHooksForTests()
model = FakeModel()
agent_1 = Agent(name="test_1", model=model)
agent_2 = Agent(name="test_2", model=model)
agent_3 = Agent(
name="test_3",
model=model,
handoffs=[agent_1, agent_2],
tools=[get_function_tool("some_function", "result")],
)
agent_1.handoffs.append(agent_3)
model.set_next_output([get_text_message("user_message")])
output = Runner.run_streamed(agent_3, input="user_message", hooks=hooks)
async for _ in output.stream_events():
pass
assert hooks.events == {"on_agent_start": 1, "on_agent_end": 1}, f"{output}"
hooks.reset()
model.add_multiple_turn_outputs(
[
# First turn: a tool call
[get_function_tool_call("some_function", json.dumps({"a": "b"}))],
# Second turn: a message and a handoff
[get_text_message("a_message"), get_handoff_tool_call(agent_1)],
# Third turn: text message
[get_text_message("done")],
]
)
output = Runner.run_streamed(agent_3, input="user_message", hooks=hooks)
async for _ in output.stream_events():
pass
assert hooks.events == {
# As in the non-streamed case above, two logical agent segments:
# starting agent_3, then handoff to agent_1.
"on_agent_start": 2,
"on_tool_start": 1, # Only one tool call
"on_tool_end": 1, # Only one tool call
"on_handoff": 1, # Only one handoff
"on_agent_end": 1, # Should always have one end
}, f"got unexpected event count: {hooks.events}"
hooks.reset()
model.add_multiple_turn_outputs(
[
# First turn: a tool call
[get_function_tool_call("some_function", json.dumps({"a": "b"}))],
# Second turn: a message, another tool call, and a handoff
[
get_text_message("a_message"),
get_function_tool_call("some_function", json.dumps({"a": "b"})),
get_handoff_tool_call(agent_1),
],
# Third turn: a message and a handoff back to the orig agent
[get_text_message("a_message"), get_handoff_tool_call(agent_3)],
# Fourth turn: text message
[get_text_message("done")],
]
)
output = Runner.run_streamed(agent_3, input="user_message", hooks=hooks)
async for _ in output.stream_events():
pass
assert hooks.events == {
# Same three logical agent segments as in the non-streamed case,
# so on_agent_start fires three times.
"on_agent_start": 3,
"on_tool_start": 2, # 2 tool calls
"on_tool_end": 2, # 2 tool calls
"on_handoff": 2, # 2 handoffs
"on_agent_end": 1, # Should always have one end
}, f"got unexpected event count: {hooks.events}"
hooks.reset()
class Foo(TypedDict):
a: str
@pytest.mark.asyncio
async def test_structed_output_non_streamed_agent_hooks():
hooks = RunHooksForTests()
model = FakeModel()
agent_1 = Agent(name="test_1", model=model)
agent_2 = Agent(name="test_2", model=model)
agent_3 = Agent(
name="test_3",
model=model,
handoffs=[agent_1, agent_2],
tools=[get_function_tool("some_function", "result")],
output_type=Foo,
)
agent_1.handoffs.append(agent_3)
model.set_next_output([get_final_output_message(json.dumps({"a": "b"}))])
output = await Runner.run(agent_3, input="user_message", hooks=hooks)
assert hooks.events == {"on_agent_start": 1, "on_agent_end": 1}, f"{output}"
hooks.reset()
model.add_multiple_turn_outputs(
[
# First turn: a tool call
[get_function_tool_call("some_function", json.dumps({"a": "b"}))],
# Second turn: a message and a handoff
[get_text_message("a_message"), get_handoff_tool_call(agent_1)],
# Third turn: end message (for agent 1)
[get_text_message("done")],
]
)
output = await Runner.run(agent_3, input="user_message", hooks=hooks)
assert hooks.events == {
# As with unstructured output, we expect on_agent_start once for
# agent_3 and once for agent_1.
"on_agent_start": 2,
"on_tool_start": 1, # Only one tool call
"on_tool_end": 1, # Only one tool call
"on_handoff": 1, # Only one handoff
"on_agent_end": 1, # Should always have one end
}, f"got unexpected event count: {hooks.events}"
hooks.reset()
model.add_multiple_turn_outputs(
[
# First turn: a tool call
[get_function_tool_call("some_function", json.dumps({"a": "b"}))],
# Second turn: a message, another tool call, and a handoff
[
get_text_message("a_message"),
get_function_tool_call("some_function", json.dumps({"a": "b"})),
get_handoff_tool_call(agent_1),
],
# Third turn: a message and a handoff back to the orig agent
[get_text_message("a_message"), get_handoff_tool_call(agent_3)],
# Fourth turn: end message (for agent 3)
[get_final_output_message(json.dumps({"a": "b"}))],
]
)
await Runner.run(agent_3, input="user_message", hooks=hooks)
assert hooks.events == {
# We still expect three logical agent segments, as before.
"on_agent_start": 3,
"on_tool_start": 2, # 2 tool calls
"on_tool_end": 2, # 2 tool calls
"on_handoff": 2, # 2 handoffs
"on_agent_end": 1, # Should always have one end
}, f"got unexpected event count: {hooks.events}"
hooks.reset()
@pytest.mark.asyncio
async def test_structed_output_streamed_agent_hooks():
hooks = RunHooksForTests()
model = FakeModel()
agent_1 = Agent(name="test_1", model=model)
agent_2 = Agent(name="test_2", model=model)
agent_3 = Agent(
name="test_3",
model=model,
handoffs=[agent_1, agent_2],
tools=[get_function_tool("some_function", "result")],
output_type=Foo,
)
agent_1.handoffs.append(agent_3)
model.set_next_output([get_final_output_message(json.dumps({"a": "b"}))])
output = Runner.run_streamed(agent_3, input="user_message", hooks=hooks)
async for _ in output.stream_events():
pass
assert hooks.events == {"on_agent_start": 1, "on_agent_end": 1}, f"{output}"
hooks.reset()
model.add_multiple_turn_outputs(
[
# First turn: a tool call
[get_function_tool_call("some_function", json.dumps({"a": "b"}))],
# Second turn: a message and a handoff
[get_text_message("a_message"), get_handoff_tool_call(agent_1)],
# Third turn: end message (for agent 1)
[get_text_message("done")],
]
)
output = Runner.run_streamed(agent_3, input="user_message", hooks=hooks)
async for _ in output.stream_events():
pass
assert hooks.events == {
# Two agent segments: agent_3 and then agent_1.
"on_agent_start": 2,
"on_tool_start": 1, # Only one tool call
"on_tool_end": 1, # Only one tool call
"on_handoff": 1, # Only one handoff
"on_agent_end": 1, # Should always have one end
}, f"got unexpected event count: {hooks.events}"
hooks.reset()
model.add_multiple_turn_outputs(
[
# First turn: a tool call
[get_function_tool_call("some_function", json.dumps({"a": "b"}))],
# Second turn: a message, another tool call, and a handoff
[
get_text_message("a_message"),
get_function_tool_call("some_function", json.dumps({"a": "b"})),
get_handoff_tool_call(agent_1),
],
# Third turn: a message and a handoff back to the orig agent
[get_text_message("a_message"), get_handoff_tool_call(agent_3)],
# Fourth turn: end message (for agent 3)
[get_final_output_message(json.dumps({"a": "b"}))],
]
)
output = Runner.run_streamed(agent_3, input="user_message", hooks=hooks)
async for _ in output.stream_events():
pass
assert hooks.events == {
# Three agent segments: agent_3, agent_1, agent_3 again.
"on_agent_start": 3,
"on_tool_start": 2, # 2 tool calls
"on_tool_end": 2, # 2 tool calls
"on_handoff": 2, # 2 handoffs
"on_agent_end": 1, # Should always have one end
}, f"got unexpected event count: {hooks.events}"
hooks.reset()