Skip to content

Commit 0c0f970

Browse files
fix(api): internal schema fixes
1 parent 9fc323f commit 0c0f970

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

‎.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-4432c056f89389d4d43b695cbdf44f97df8169f63bbae2c15fc079a5766ced6e.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-b879fff3f51e71e4f1ce17f03efc017a46d888a1bfd88eb655a6210a86f02acf.yml
33
openapi_spec_hash: cbf649cc2c944fb3f77450ec752ab1e9
4-
config_hash: 7f49c38fa3abe9b7038ffe62262c4912
4+
config_hash: 98b0cef9ae8aa65d4a2c6df50d044379

‎src/openai/types/responses/easy_input_message.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class EasyInputMessage(BaseModel):
3030
One of `user`, `assistant`, `system`, or `developer`.
3131
"""
3232

33-
phase: Optional[Literal["commentary"]] = None
33+
phase: Optional[Literal["commentary", "final_answer"]] = None
3434
"""
3535
Labels an `assistant` message as intermediate commentary (`commentary`) or the
3636
final answer (`final_answer`). For models like `gpt-5.3-codex` and beyond, when

‎src/openai/types/responses/easy_input_message_param.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class EasyInputMessageParam(TypedDict, total=False):
3131
One of `user`, `assistant`, `system`, or `developer`.
3232
"""
3333

34-
phase: Optional[Literal["commentary"]]
34+
phase: Optional[Literal["commentary", "final_answer"]]
3535
"""
3636
Labels an `assistant` message as intermediate commentary (`commentary`) or the
3737
final answer (`final_answer`). For models like `gpt-5.3-codex` and beyond, when

‎src/openai/types/responses/response_output_message.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class ResponseOutputMessage(BaseModel):
3535
type: Literal["message"]
3636
"""The type of the output message. Always `message`."""
3737

38-
phase: Optional[Literal["commentary"]] = None
38+
phase: Optional[Literal["commentary", "final_answer"]] = None
3939
"""
4040
Labels an `assistant` message as intermediate commentary (`commentary`) or the
4141
final answer (`final_answer`). For models like `gpt-5.3-codex` and beyond, when

‎src/openai/types/responses/response_output_message_param.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class ResponseOutputMessageParam(TypedDict, total=False):
3535
type: Required[Literal["message"]]
3636
"""The type of the output message. Always `message`."""
3737

38-
phase: Optional[Literal["commentary"]]
38+
phase: Optional[Literal["commentary", "final_answer"]]
3939
"""
4040
Labels an `assistant` message as intermediate commentary (`commentary`) or the
4141
final answer (`final_answer`). For models like `gpt-5.3-codex` and beyond, when

0 commit comments

Comments
 (0)