Skip to content

Commit e6331a7

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

File tree

2 files changed

+87
-83
lines changed

2 files changed

+87
-83
lines changed

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)