Skip to content

Commit 1bbaf88

Browse files
feat(api): add shell_call_output status field
1 parent dc68b90 commit 1bbaf88

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 137
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-506f44f37cccac43899267dd64cc5615e96f6e15f2736aa37e5e4eed2eccc567.yml
3-
openapi_spec_hash: d242c25afd700d928787a46e7901fa45
4-
config_hash: ad7136f7366fddec432ec378939e58a7
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-f1f6d4ab31f58e4d3dd84b28802a7cba3b3f042f9d2940e0dae2b133af064968.yml
3+
openapi_spec_hash: 4f5eaf9930f283a039c1a536961591d4
4+
config_hash: d827d220d7967208cd0207c0518554b7

src/openai/types/responses/response_input_item.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,9 @@ class ShellCallOutput(BaseModel):
285285
output.
286286
"""
287287

288+
status: Optional[Literal["in_progress", "completed", "incomplete"]] = None
289+
"""The status of the shell call output."""
290+
288291

289292
class ApplyPatchCallOperationCreateFile(BaseModel):
290293
"""Instruction for creating a new file via the apply_patch tool."""

src/openai/types/responses/response_input_item_param.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,6 +286,9 @@ class ShellCallOutput(TypedDict, total=False):
286286
output.
287287
"""
288288

289+
status: Optional[Literal["in_progress", "completed", "incomplete"]]
290+
"""The status of the shell call output."""
291+
289292

290293
class ApplyPatchCallOperationCreateFile(TypedDict, total=False):
291294
"""Instruction for creating a new file via the apply_patch tool."""

src/openai/types/responses/response_input_param.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,9 @@ class ShellCallOutput(TypedDict, total=False):
287287
output.
288288
"""
289289

290+
status: Optional[Literal["in_progress", "completed", "incomplete"]]
291+
"""The status of the shell call output."""
292+
290293

291294
class ApplyPatchCallOperationCreateFile(TypedDict, total=False):
292295
"""Instruction for creating a new file via the apply_patch tool."""

0 commit comments

Comments
 (0)