Skip to content

Commit 8c9974b

Browse files
committed
Fix breaking changes from openai 1.66.2
1 parent 6d35c33 commit 8c9974b

File tree

3 files changed

+89
-85
lines changed

3 files changed

+89
-85
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
{ name = "OpenAI", email = "[email protected]" },
1010
]
1111
dependencies = [
12-
"openai>=1.66.2",
12+
"openai>=1.66.5",
1313
"pydantic>=2.10, <3",
1414
"griffe>=1.5.6, <2",
1515
"typing-extensions>=4.12.2, <5",

src/agents/models/openai_chatcompletions.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
ResponseUsage,
5555
)
5656
from openai.types.responses.response_input_param import FunctionCallOutput, ItemReference, Message
57-
from openai.types.responses.response_usage import OutputTokensDetails
57+
from openai.types.responses.response_usage import InputTokensDetails, OutputTokensDetails
5858

5959
from .. import _debug
6060
from ..agent_output import AgentOutputSchema
@@ -420,6 +420,11 @@ async def stream_response(
420420
and usage.completion_tokens_details.reasoning_tokens
421421
else 0
422422
),
423+
input_tokens_details=InputTokensDetails(
424+
cached_tokens=usage.prompt_tokens_details.cached_tokens
425+
if usage.prompt_tokens_details and usage.prompt_tokens_details.cached_tokens
426+
else 0
427+
),
423428
)
424429
if usage
425430
else None

0 commit comments

Comments
 (0)