forked from openai/openai-agents-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_run_step_processing.py
422 lines (362 loc) · 12.7 KB
/
test_run_step_processing.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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
from __future__ import annotations
import pytest
from openai.types.responses import (
ResponseComputerToolCall,
ResponseFileSearchToolCall,
ResponseFunctionWebSearch,
)
from openai.types.responses.response_computer_tool_call import ActionClick
from openai.types.responses.response_reasoning_item import ResponseReasoningItem, Summary
from pydantic import BaseModel
from agents import (
Agent,
Computer,
ComputerTool,
Handoff,
ModelBehaviorError,
ModelResponse,
ReasoningItem,
RunContextWrapper,
Runner,
ToolCallItem,
Usage,
)
from agents._run_impl import RunImpl
from .test_responses import (
get_final_output_message,
get_function_tool,
get_function_tool_call,
get_handoff_tool_call,
get_text_message,
)
def test_empty_response():
agent = Agent(name="test")
response = ModelResponse(
output=[],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent, response=response, output_schema=None, handoffs=[]
)
assert not result.handoffs
assert not result.functions
def test_no_tool_calls():
agent = Agent(name="test")
response = ModelResponse(
output=[get_text_message("Hello, world!")],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent, response=response, output_schema=None, handoffs=[]
)
assert not result.handoffs
assert not result.functions
def test_single_tool_call():
agent = Agent(name="test", tools=[get_function_tool(name="test")])
response = ModelResponse(
output=[
get_text_message("Hello, world!"),
get_function_tool_call("test", ""),
],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent, response=response, output_schema=None, handoffs=[]
)
assert not result.handoffs
assert result.functions and len(result.functions) == 1
func = result.functions[0]
assert func.tool_call.name == "test"
assert func.tool_call.arguments == ""
def test_missing_tool_call_raises_error():
agent = Agent(name="test", tools=[get_function_tool(name="test")])
response = ModelResponse(
output=[
get_text_message("Hello, world!"),
get_function_tool_call("missing", ""),
],
usage=Usage(),
referenceable_id=None,
)
with pytest.raises(ModelBehaviorError):
RunImpl.process_model_response(
agent=agent, response=response, output_schema=None, handoffs=[]
)
def test_multiple_tool_calls():
agent = Agent(
name="test",
tools=[
get_function_tool(name="test_1"),
get_function_tool(name="test_2"),
get_function_tool(name="test_3"),
],
)
response = ModelResponse(
output=[
get_text_message("Hello, world!"),
get_function_tool_call("test_1", "abc"),
get_function_tool_call("test_2", "xyz"),
],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent, response=response, output_schema=None, handoffs=[]
)
assert not result.handoffs
assert result.functions and len(result.functions) == 2
func_1 = result.functions[0]
assert func_1.tool_call.name == "test_1"
assert func_1.tool_call.arguments == "abc"
func_2 = result.functions[1]
assert func_2.tool_call.name == "test_2"
assert func_2.tool_call.arguments == "xyz"
@pytest.mark.asyncio
async def test_handoffs_parsed_correctly():
agent_1 = Agent(name="test_1")
agent_2 = Agent(name="test_2")
agent_3 = Agent(name="test_3", handoffs=[agent_1, agent_2])
response = ModelResponse(
output=[get_text_message("Hello, world!")],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent_3, response=response, output_schema=None, handoffs=[]
)
assert not result.handoffs, "Shouldn't have a handoff here"
response = ModelResponse(
output=[get_text_message("Hello, world!"), get_handoff_tool_call(agent_1)],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent_3,
response=response,
output_schema=None,
handoffs=Runner._get_handoffs(agent_3),
)
assert len(result.handoffs) == 1, "Should have a handoff here"
handoff = result.handoffs[0]
assert handoff.handoff.tool_name == Handoff.default_tool_name(agent_1)
assert handoff.handoff.tool_description == Handoff.default_tool_description(agent_1)
assert handoff.handoff.agent_name == agent_1.name
handoff_agent = await handoff.handoff.on_invoke_handoff(
RunContextWrapper(None), handoff.tool_call.arguments
)
assert handoff_agent == agent_1
@pytest.mark.asyncio
async def test_missing_handoff_fails():
agent_1 = Agent(name="test_1")
agent_2 = Agent(name="test_2")
agent_3 = Agent(name="test_3", handoffs=[agent_1])
response = ModelResponse(
output=[get_text_message("Hello, world!"), get_handoff_tool_call(agent_2)],
usage=Usage(),
referenceable_id=None,
)
with pytest.raises(ModelBehaviorError):
RunImpl.process_model_response(
agent=agent_3,
response=response,
output_schema=None,
handoffs=Runner._get_handoffs(agent_3),
)
def test_multiple_handoffs_doesnt_error():
agent_1 = Agent(name="test_1")
agent_2 = Agent(name="test_2")
agent_3 = Agent(name="test_3", handoffs=[agent_1, agent_2])
response = ModelResponse(
output=[
get_text_message("Hello, world!"),
get_handoff_tool_call(agent_1),
get_handoff_tool_call(agent_2),
],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent_3,
response=response,
output_schema=None,
handoffs=Runner._get_handoffs(agent_3),
)
assert len(result.handoffs) == 2, "Should have multiple handoffs here"
class Foo(BaseModel):
bar: str
def test_final_output_parsed_correctly():
agent = Agent(name="test", output_type=Foo)
response = ModelResponse(
output=[
get_text_message("Hello, world!"),
get_final_output_message(Foo(bar="123").model_dump_json()),
],
usage=Usage(),
referenceable_id=None,
)
RunImpl.process_model_response(
agent=agent,
response=response,
output_schema=Runner._get_output_schema(agent),
handoffs=[],
)
def test_file_search_tool_call_parsed_correctly():
# Ensure that a ResponseFileSearchToolCall output is parsed into a ToolCallItem and that no tool
# runs are scheduled.
agent = Agent(name="test")
file_search_call = ResponseFileSearchToolCall(
id="fs1",
queries=["query"],
status="completed",
type="file_search_call",
)
response = ModelResponse(
output=[get_text_message("hello"), file_search_call],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent, response=response, output_schema=None, handoffs=[]
)
# The final item should be a ToolCallItem for the file search call
assert any(
isinstance(item, ToolCallItem) and item.raw_item is file_search_call
for item in result.new_items
)
assert not result.functions
assert not result.handoffs
def test_function_web_search_tool_call_parsed_correctly():
agent = Agent(name="test")
web_search_call = ResponseFunctionWebSearch(id="w1", status="completed", type="web_search_call")
response = ModelResponse(
output=[get_text_message("hello"), web_search_call],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent, response=response, output_schema=None, handoffs=[]
)
assert any(
isinstance(item, ToolCallItem) and item.raw_item is web_search_call
for item in result.new_items
)
assert not result.functions
assert not result.handoffs
def test_reasoning_item_parsed_correctly():
# Verify that a Reasoning output item is converted into a ReasoningItem.
reasoning = ResponseReasoningItem(
id="r1", type="reasoning", summary=[Summary(text="why", type="summary_text")]
)
response = ModelResponse(
output=[reasoning],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=Agent(name="test"), response=response, output_schema=None, handoffs=[]
)
assert any(
isinstance(item, ReasoningItem) and item.raw_item is reasoning for item in result.new_items
)
class DummyComputer(Computer):
"""Minimal computer implementation for testing."""
@property
def environment(self):
return "mac" # pragma: no cover
@property
def dimensions(self):
return (0, 0) # pragma: no cover
def screenshot(self) -> str:
return "" # pragma: no cover
def click(self, x: int, y: int, button: str) -> None:
return None # pragma: no cover
def double_click(self, x: int, y: int) -> None:
return None # pragma: no cover
def scroll(self, x: int, y: int, scroll_x: int, scroll_y: int) -> None:
return None # pragma: no cover
def type(self, text: str) -> None:
return None # pragma: no cover
def wait(self) -> None:
return None # pragma: no cover
def move(self, x: int, y: int) -> None:
return None # pragma: no cover
def keypress(self, keys: list[str]) -> None:
return None # pragma: no cover
def drag(self, path: list[tuple[int, int]]) -> None:
return None # pragma: no cover
def test_computer_tool_call_without_computer_tool_raises_error():
# If the agent has no ComputerTool in its tools, process_model_response should raise a
# ModelBehaviorError when encountering a ResponseComputerToolCall.
computer_call = ResponseComputerToolCall(
id="c1",
type="computer_call",
action=ActionClick(type="click", x=1, y=2, button="left"),
call_id="c1",
pending_safety_checks=[],
status="completed",
)
response = ModelResponse(
output=[computer_call],
usage=Usage(),
referenceable_id=None,
)
with pytest.raises(ModelBehaviorError):
RunImpl.process_model_response(
agent=Agent(name="test"), response=response, output_schema=None, handoffs=[]
)
def test_computer_tool_call_with_computer_tool_parsed_correctly():
# If the agent contains a ComputerTool, ensure that a ResponseComputerToolCall is parsed into a
# ToolCallItem and scheduled to run in computer_actions.
dummy_computer = DummyComputer()
agent = Agent(name="test", tools=[ComputerTool(computer=dummy_computer)])
computer_call = ResponseComputerToolCall(
id="c1",
type="computer_call",
action=ActionClick(type="click", x=1, y=2, button="left"),
call_id="c1",
pending_safety_checks=[],
status="completed",
)
response = ModelResponse(
output=[computer_call],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent, response=response, output_schema=None, handoffs=[]
)
assert any(
isinstance(item, ToolCallItem) and item.raw_item is computer_call
for item in result.new_items
)
assert result.computer_actions and result.computer_actions[0].tool_call == computer_call
def test_tool_and_handoff_parsed_correctly():
agent_1 = Agent(name="test_1")
agent_2 = Agent(name="test_2")
agent_3 = Agent(
name="test_3", tools=[get_function_tool(name="test")], handoffs=[agent_1, agent_2]
)
response = ModelResponse(
output=[
get_text_message("Hello, world!"),
get_function_tool_call("test", "abc"),
get_handoff_tool_call(agent_1),
],
usage=Usage(),
referenceable_id=None,
)
result = RunImpl.process_model_response(
agent=agent_3,
response=response,
output_schema=None,
handoffs=Runner._get_handoffs(agent_3),
)
assert result.functions and len(result.functions) == 1
assert len(result.handoffs) == 1, "Should have a handoff here"
handoff = result.handoffs[0]
assert handoff.handoff.tool_name == Handoff.default_tool_name(agent_1)
assert handoff.handoff.tool_description == Handoff.default_tool_description(agent_1)
assert handoff.handoff.agent_name == agent_1.name