forked from openai/openai-agents-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_responses_tracing.py
212 lines (163 loc) · 7.51 KB
/
test_responses_tracing.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
import pytest
from openai import AsyncOpenAI
from openai.types.responses import ResponseCompletedEvent
from agents import ModelSettings, ModelTracing, OpenAIResponsesModel, trace
from agents.tracing.span_data import ResponseSpanData
from tests import fake_model
from .testing_processor import fetch_ordered_spans
class DummyTracing:
def is_disabled(self):
return False
class DummyUsage:
def __init__(self, input_tokens=1, output_tokens=1, total_tokens=2):
self.input_tokens = input_tokens
self.output_tokens = output_tokens
self.total_tokens = total_tokens
class DummyResponse:
def __init__(self):
self.id = "dummy-id"
self.output = []
self.usage = DummyUsage()
def __aiter__(self):
yield ResponseCompletedEvent(
type="response.completed",
response=fake_model.get_response_obj(self.output),
)
@pytest.mark.allow_call_model_methods
@pytest.mark.asyncio
async def test_get_response_creates_trace(monkeypatch):
with trace(workflow_name="test"):
# Create an instance of the model
model = OpenAIResponsesModel(model="test-model", openai_client=AsyncOpenAI(api_key="test"))
# Mock _fetch_response to return a dummy response with a known id
async def dummy_fetch_response(
system_instructions, input, model_settings, tools, output_schema, handoffs, stream
):
return DummyResponse()
monkeypatch.setattr(model, "_fetch_response", dummy_fetch_response)
# Call get_response
await model.get_response(
"instr", "input", ModelSettings(), [], None, [], ModelTracing.ENABLED
)
spans = fetch_ordered_spans()
assert len(spans) == 1
assert isinstance(spans[0].span_data, ResponseSpanData)
assert spans[0].span_data.response is not None
assert spans[0].span_data.response.id == "dummy-id"
@pytest.mark.allow_call_model_methods
@pytest.mark.asyncio
async def test_non_data_tracing_doesnt_set_response_id(monkeypatch):
with trace(workflow_name="test"):
# Create an instance of the model
model = OpenAIResponsesModel(model="test-model", openai_client=AsyncOpenAI(api_key="test"))
# Mock _fetch_response to return a dummy response with a known id
async def dummy_fetch_response(
system_instructions, input, model_settings, tools, output_schema, handoffs, stream
):
return DummyResponse()
monkeypatch.setattr(model, "_fetch_response", dummy_fetch_response)
# Call get_response
await model.get_response(
"instr", "input", ModelSettings(), [], None, [], ModelTracing.ENABLED_WITHOUT_DATA
)
spans = fetch_ordered_spans()
assert len(spans) == 1
assert spans[0].span_data.response is None
@pytest.mark.allow_call_model_methods
@pytest.mark.asyncio
async def test_disable_tracing_does_not_create_span(monkeypatch):
with trace(workflow_name="test"):
# Create an instance of the model
model = OpenAIResponsesModel(model="test-model", openai_client=AsyncOpenAI(api_key="test"))
# Mock _fetch_response to return a dummy response with a known id
async def dummy_fetch_response(
system_instructions, input, model_settings, tools, output_schema, handoffs, stream
):
return DummyResponse()
monkeypatch.setattr(model, "_fetch_response", dummy_fetch_response)
# Call get_response
await model.get_response(
"instr", "input", ModelSettings(), [], None, [], ModelTracing.DISABLED
)
spans = fetch_ordered_spans()
assert len(spans) == 0
@pytest.mark.allow_call_model_methods
@pytest.mark.asyncio
async def test_stream_response_creates_trace(monkeypatch):
with trace(workflow_name="test"):
# Create an instance of the model
model = OpenAIResponsesModel(model="test-model", openai_client=AsyncOpenAI(api_key="test"))
# Define a dummy fetch function that returns an async stream with a dummy response
async def dummy_fetch_response(
system_instructions, input, model_settings, tools, output_schema, handoffs, stream
):
class DummyStream:
async def __aiter__(self):
yield ResponseCompletedEvent(
type="response.completed",
response=fake_model.get_response_obj([], "dummy-id-123"),
)
return DummyStream()
monkeypatch.setattr(model, "_fetch_response", dummy_fetch_response)
# Consume the stream to trigger processing of the final response
async for _ in model.stream_response(
"instr", "input", ModelSettings(), [], None, [], ModelTracing.ENABLED
):
pass
spans = fetch_ordered_spans()
assert len(spans) == 1
assert isinstance(spans[0].span_data, ResponseSpanData)
assert spans[0].span_data.response is not None
assert spans[0].span_data.response.id == "dummy-id-123"
@pytest.mark.allow_call_model_methods
@pytest.mark.asyncio
async def test_stream_non_data_tracing_doesnt_set_response_id(monkeypatch):
with trace(workflow_name="test"):
# Create an instance of the model
model = OpenAIResponsesModel(model="test-model", openai_client=AsyncOpenAI(api_key="test"))
# Define a dummy fetch function that returns an async stream with a dummy response
async def dummy_fetch_response(
system_instructions, input, model_settings, tools, output_schema, handoffs, stream
):
class DummyStream:
async def __aiter__(self):
yield ResponseCompletedEvent(
type="response.completed",
response=fake_model.get_response_obj([], "dummy-id-123"),
)
return DummyStream()
monkeypatch.setattr(model, "_fetch_response", dummy_fetch_response)
# Consume the stream to trigger processing of the final response
async for _ in model.stream_response(
"instr", "input", ModelSettings(), [], None, [], ModelTracing.ENABLED_WITHOUT_DATA
):
pass
spans = fetch_ordered_spans()
assert len(spans) == 1
assert isinstance(spans[0].span_data, ResponseSpanData)
assert spans[0].span_data.response is None
@pytest.mark.allow_call_model_methods
@pytest.mark.asyncio
async def test_stream_disabled_tracing_doesnt_create_span(monkeypatch):
with trace(workflow_name="test"):
# Create an instance of the model
model = OpenAIResponsesModel(model="test-model", openai_client=AsyncOpenAI(api_key="test"))
# Define a dummy fetch function that returns an async stream with a dummy response
async def dummy_fetch_response(
system_instructions, input, model_settings, tools, output_schema, handoffs, stream
):
class DummyStream:
async def __aiter__(self):
yield ResponseCompletedEvent(
type="response.completed",
response=fake_model.get_response_obj([], "dummy-id-123"),
)
return DummyStream()
monkeypatch.setattr(model, "_fetch_response", dummy_fetch_response)
# Consume the stream to trigger processing of the final response
async for _ in model.stream_response(
"instr", "input", ModelSettings(), [], None, [], ModelTracing.DISABLED
):
pass
spans = fetch_ordered_spans()
assert len(spans) == 0