Skip to content

Commit 9fc323f

Browse files
fix(api): manual updates
1 parent 1b27b5a commit 9fc323f

5 files changed

Lines changed: 22 additions & 2 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 148
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-ca4985bc94b25eac84a5d7538d1bdf134c9b99dae9e95f1eae0aae90130c4bf8.yml
3-
openapi_spec_hash: 855db4b2dbaf3f8f83afe0df66397c02
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-4432c056f89389d4d43b695cbdf44f97df8169f63bbae2c15fc079a5766ced6e.yml
3+
openapi_spec_hash: cbf649cc2c944fb3f77450ec752ab1e9
44
config_hash: 7f49c38fa3abe9b7038ffe62262c4912

src/openai/types/responses/easy_input_message.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ class EasyInputMessage(BaseModel):
3636
final answer (`final_answer`). For models like `gpt-5.3-codex` and beyond, when
3737
sending follow-up requests, preserve and resend phase on all assistant messages
3838
— dropping it can degrade performance. Not used for user messages.
39+
40+
Use `commentary` for an intermediate assistant message and `final_answer` for
41+
the final assistant message. For follow-up requests with models like
42+
`gpt-5.3-codex` and later, preserve and resend phase on all assistant messages.
43+
Omitting it can degrade performance. Not used for user messages.
3944
"""
4045

4146
type: Optional[Literal["message"]] = None

src/openai/types/responses/easy_input_message_param.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ class EasyInputMessageParam(TypedDict, total=False):
3737
final answer (`final_answer`). For models like `gpt-5.3-codex` and beyond, when
3838
sending follow-up requests, preserve and resend phase on all assistant messages
3939
— dropping it can degrade performance. Not used for user messages.
40+
41+
Use `commentary` for an intermediate assistant message and `final_answer` for
42+
the final assistant message. For follow-up requests with models like
43+
`gpt-5.3-codex` and later, preserve and resend phase on all assistant messages.
44+
Omitting it can degrade performance. Not used for user messages.
4045
"""
4146

4247
type: Literal["message"]

src/openai/types/responses/response_output_message.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,9 @@ class ResponseOutputMessage(BaseModel):
4141
final answer (`final_answer`). For models like `gpt-5.3-codex` and beyond, when
4242
sending follow-up requests, preserve and resend phase on all assistant messages
4343
— dropping it can degrade performance. Not used for user messages.
44+
45+
Use `commentary` for an intermediate assistant message and `final_answer` for
46+
the final assistant message. For follow-up requests with models like
47+
`gpt-5.3-codex` and later, preserve and resend phase on all assistant messages.
48+
Omitting it can degrade performance. Not used for user messages.
4449
"""

src/openai/types/responses/response_output_message_param.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,9 @@ class ResponseOutputMessageParam(TypedDict, total=False):
4141
final answer (`final_answer`). For models like `gpt-5.3-codex` and beyond, when
4242
sending follow-up requests, preserve and resend phase on all assistant messages
4343
— dropping it can degrade performance. Not used for user messages.
44+
45+
Use `commentary` for an intermediate assistant message and `final_answer` for
46+
the final assistant message. For follow-up requests with models like
47+
`gpt-5.3-codex` and later, preserve and resend phase on all assistant messages.
48+
Omitting it can degrade performance. Not used for user messages.
4449
"""

0 commit comments

Comments
 (0)