Skip to content

Commit 84cbdfd

Browse files
authored
Upgrade deps (#1086)
1 parent 068ee15 commit 84cbdfd

File tree

4 files changed

+613
-499
lines changed

4 files changed

+613
-499
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ dev = [
140140
"structlog >= 24.4.0",
141141
"loguru >= 0.7.3",
142142
"ruff >= 0.8.3",
143-
"pyright >= 1.1.397",
143+
"pyright != 1.1.401",
144144
"pre-commit>=3.5.0",
145145
"coverage[toml]>=7.5.0",
146146
"psycopg[binary] >= 3.2.3",

tests/otel_integrations/test_openai_agents.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,7 @@ def random_number() -> int:
516516
},
517517
],
518518
'top_p': 1.0,
519+
'background': None,
519520
'max_output_tokens': None,
520521
'previous_response_id': None,
521522
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -785,6 +786,7 @@ def random_number() -> int:
785786
'tool_choice': 'auto',
786787
'tools': [],
787788
'top_p': 1.0,
789+
'background': None,
788790
'max_output_tokens': None,
789791
'previous_response_id': None,
790792
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -1125,6 +1127,7 @@ async def zero_guardrail(_context: Any, _agent: Agent[Any], inp: Any) -> Guardra
11251127
'tool_choice': 'auto',
11261128
'tools': [],
11271129
'top_p': 1.0,
1130+
'background': None,
11281131
'max_output_tokens': None,
11291132
'previous_response_id': None,
11301133
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -1812,6 +1815,7 @@ async def test_responses_simple(exporter: TestExporter):
18121815
'tool_choice': 'auto',
18131816
'tools': [],
18141817
'top_p': 1.0,
1818+
'background': None,
18151819
'max_output_tokens': None,
18161820
'previous_response_id': None,
18171821
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -2005,6 +2009,7 @@ async def test_responses_simple(exporter: TestExporter):
20052009
'tool_choice': 'auto',
20062010
'tools': [],
20072011
'top_p': 1.0,
2012+
'background': None,
20082013
'max_output_tokens': None,
20092014
'previous_response_id': None,
20102015
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -2286,6 +2291,7 @@ async def test_file_search(exporter: TestExporter):
22862291
}
22872292
],
22882293
'top_p': 1.0,
2294+
'background': None,
22892295
'max_output_tokens': None,
22902296
'previous_response_id': None,
22912297
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -2538,6 +2544,7 @@ async def test_file_search(exporter: TestExporter):
25382544
}
25392545
],
25402546
'top_p': 1.0,
2547+
'background': None,
25412548
'max_output_tokens': None,
25422549
'previous_response_id': None,
25432550
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -2859,6 +2866,7 @@ def tool():
28592866
}
28602867
],
28612868
'top_p': 1.0,
2869+
'background': None,
28622870
'max_output_tokens': None,
28632871
'previous_response_id': None,
28642872
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -3097,6 +3105,7 @@ def tool():
30973105
}
30983106
],
30993107
'top_p': 1.0,
3108+
'background': None,
31003109
'max_output_tokens': None,
31013110
'previous_response_id': None,
31023111
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -3469,6 +3478,7 @@ async def test_voice_pipeline(exporter: TestExporter, vcr_allow_bytes: None):
34693478
'tool_choice': 'auto',
34703479
'tools': [],
34713480
'top_p': 1.0,
3481+
'background': None,
34723482
'max_output_tokens': None,
34733483
'previous_response_id': None,
34743484
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},

tests/otel_integrations/test_openai_agents_mcp.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -364,6 +364,7 @@ def name(self):
364364
}
365365
],
366366
'top_p': 1.0,
367+
'background': None,
367368
'max_output_tokens': None,
368369
'previous_response_id': None,
369370
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},
@@ -674,6 +675,7 @@ def name(self):
674675
}
675676
],
676677
'top_p': 1.0,
678+
'background': None,
677679
'max_output_tokens': None,
678680
'previous_response_id': None,
679681
'reasoning': {'effort': None, 'generate_summary': None, 'summary': None},

0 commit comments

Comments
 (0)