Skip to content

Commit 5f7beb8

Browse files
stainless-app[bot]meorphis
authored and
meorphis
committed
fix(types): improve responses type names (#2224)
1 parent f570d91 commit 5f7beb8

15 files changed

+241
-181
lines changed

.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 81
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-f763c1a35c8b9b02f1e31b9b2e09e21f98bfe8413e5079c86cbb07da2dd7779b.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-f3bce04386c4fcfd5037e0477fbaa39010003fd1558eb5185fe4a71dd6a05fdd.yml

api.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,8 @@ from openai.types.responses import (
605605
ResponseCodeInterpreterToolCall,
606606
ResponseCompletedEvent,
607607
ResponseComputerToolCall,
608+
ResponseComputerToolCallOutputItem,
609+
ResponseComputerToolCallOutputScreenshot,
608610
ResponseContent,
609611
ResponseContentPartAddedEvent,
610612
ResponseContentPartDoneEvent,
@@ -621,6 +623,8 @@ from openai.types.responses import (
621623
ResponseFunctionCallArgumentsDeltaEvent,
622624
ResponseFunctionCallArgumentsDoneEvent,
623625
ResponseFunctionToolCall,
626+
ResponseFunctionToolCallItem,
627+
ResponseFunctionToolCallOutputItem,
624628
ResponseFunctionWebSearch,
625629
ResponseInProgressEvent,
626630
ResponseIncludable,
@@ -632,7 +636,9 @@ from openai.types.responses import (
632636
ResponseInputImage,
633637
ResponseInputItem,
634638
ResponseInputMessageContentList,
639+
ResponseInputMessageItem,
635640
ResponseInputText,
641+
ResponseItem,
636642
ResponseOutputAudio,
637643
ResponseOutputItem,
638644
ResponseOutputItemAddedEvent,
@@ -677,4 +683,4 @@ from openai.types.responses import ResponseItemList
677683

678684
Methods:
679685

680-
- <code title="get /responses/{response_id}/input_items">client.responses.input_items.<a href="./src/openai/resources/responses/input_items.py">list</a>(response_id, \*\*<a href="src/openai/types/responses/input_item_list_params.py">params</a>) -> SyncCursorPage[Data]</code>
686+
- <code title="get /responses/{response_id}/input_items">client.responses.input_items.<a href="./src/openai/resources/responses/input_items.py">list</a>(response_id, \*\*<a href="src/openai/types/responses/input_item_list_params.py">params</a>) -> <a href="./src/openai/types/responses/response_item.py">SyncCursorPage[ResponseItem]</a></code>

src/openai/resources/responses/input_items.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from ...pagination import SyncCursorPage, AsyncCursorPage
1717
from ..._base_client import AsyncPaginator, make_request_options
1818
from ...types.responses import input_item_list_params
19-
from ...types.responses.response_item_list import Data
19+
from ...types.responses.response_item import ResponseItem
2020

2121
__all__ = ["InputItems", "AsyncInputItems"]
2222

@@ -55,7 +55,7 @@ def list(
5555
extra_query: Query | None = None,
5656
extra_body: Body | None = None,
5757
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
58-
) -> SyncCursorPage[Data]:
58+
) -> SyncCursorPage[ResponseItem]:
5959
"""
6060
Returns a list of input items for a given response.
6161
@@ -84,7 +84,7 @@ def list(
8484
raise ValueError(f"Expected a non-empty value for `response_id` but received {response_id!r}")
8585
return self._get_api_list(
8686
f"/responses/{response_id}/input_items",
87-
page=SyncCursorPage[Data],
87+
page=SyncCursorPage[ResponseItem],
8888
options=make_request_options(
8989
extra_headers=extra_headers,
9090
extra_query=extra_query,
@@ -100,7 +100,7 @@ def list(
100100
input_item_list_params.InputItemListParams,
101101
),
102102
),
103-
model=cast(Any, Data), # Union types cannot be passed in as arguments in the type system
103+
model=cast(Any, ResponseItem), # Union types cannot be passed in as arguments in the type system
104104
)
105105

106106

@@ -138,7 +138,7 @@ def list(
138138
extra_query: Query | None = None,
139139
extra_body: Body | None = None,
140140
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
141-
) -> AsyncPaginator[Data, AsyncCursorPage[Data]]:
141+
) -> AsyncPaginator[ResponseItem, AsyncCursorPage[ResponseItem]]:
142142
"""
143143
Returns a list of input items for a given response.
144144
@@ -167,7 +167,7 @@ def list(
167167
raise ValueError(f"Expected a non-empty value for `response_id` but received {response_id!r}")
168168
return self._get_api_list(
169169
f"/responses/{response_id}/input_items",
170-
page=AsyncCursorPage[Data],
170+
page=AsyncCursorPage[ResponseItem],
171171
options=make_request_options(
172172
extra_headers=extra_headers,
173173
extra_query=extra_query,
@@ -183,7 +183,7 @@ def list(
183183
input_item_list_params.InputItemListParams,
184184
),
185185
),
186-
model=cast(Any, Data), # Union types cannot be passed in as arguments in the type system
186+
model=cast(Any, ResponseItem), # Union types cannot be passed in as arguments in the type system
187187
)
188188

189189

src/openai/types/responses/__init__.py

+15
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from .tool_param import ToolParam as ToolParam
88
from .computer_tool import ComputerTool as ComputerTool
99
from .function_tool import FunctionTool as FunctionTool
10+
from .response_item import ResponseItem as ResponseItem
1011
from .response_error import ResponseError as ResponseError
1112
from .response_usage import ResponseUsage as ResponseUsage
1213
from .parsed_response import (
@@ -66,6 +67,7 @@
6667
from .response_computer_tool_call import ResponseComputerToolCall as ResponseComputerToolCall
6768
from .response_format_text_config import ResponseFormatTextConfig as ResponseFormatTextConfig
6869
from .response_function_tool_call import ResponseFunctionToolCall as ResponseFunctionToolCall
70+
from .response_input_message_item import ResponseInputMessageItem as ResponseInputMessageItem
6971
from .response_refusal_done_event import ResponseRefusalDoneEvent as ResponseRefusalDoneEvent
7072
from .response_function_web_search import ResponseFunctionWebSearch as ResponseFunctionWebSearch
7173
from .response_input_content_param import ResponseInputContentParam as ResponseInputContentParam
@@ -76,6 +78,7 @@
7678
from .response_file_search_tool_call import ResponseFileSearchToolCall as ResponseFileSearchToolCall
7779
from .response_output_item_done_event import ResponseOutputItemDoneEvent as ResponseOutputItemDoneEvent
7880
from .response_content_part_done_event import ResponseContentPartDoneEvent as ResponseContentPartDoneEvent
81+
from .response_function_tool_call_item import ResponseFunctionToolCallItem as ResponseFunctionToolCallItem
7982
from .response_output_item_added_event import ResponseOutputItemAddedEvent as ResponseOutputItemAddedEvent
8083
from .response_computer_tool_call_param import ResponseComputerToolCallParam as ResponseComputerToolCallParam
8184
from .response_content_part_added_event import ResponseContentPartAddedEvent as ResponseContentPartAddedEvent
@@ -90,9 +93,15 @@
9093
from .response_audio_transcript_delta_event import (
9194
ResponseAudioTranscriptDeltaEvent as ResponseAudioTranscriptDeltaEvent,
9295
)
96+
from .response_computer_tool_call_output_item import (
97+
ResponseComputerToolCallOutputItem as ResponseComputerToolCallOutputItem,
98+
)
9399
from .response_format_text_json_schema_config import (
94100
ResponseFormatTextJSONSchemaConfig as ResponseFormatTextJSONSchemaConfig,
95101
)
102+
from .response_function_tool_call_output_item import (
103+
ResponseFunctionToolCallOutputItem as ResponseFunctionToolCallOutputItem,
104+
)
96105
from .response_web_search_call_completed_event import (
97106
ResponseWebSearchCallCompletedEvent as ResponseWebSearchCallCompletedEvent,
98107
)
@@ -120,6 +129,9 @@
120129
from .response_function_call_arguments_delta_event import (
121130
ResponseFunctionCallArgumentsDeltaEvent as ResponseFunctionCallArgumentsDeltaEvent,
122131
)
132+
from .response_computer_tool_call_output_screenshot import (
133+
ResponseComputerToolCallOutputScreenshot as ResponseComputerToolCallOutputScreenshot,
134+
)
123135
from .response_format_text_json_schema_config_param import (
124136
ResponseFormatTextJSONSchemaConfigParam as ResponseFormatTextJSONSchemaConfigParam,
125137
)
@@ -138,3 +150,6 @@
138150
from .response_code_interpreter_call_interpreting_event import (
139151
ResponseCodeInterpreterCallInterpretingEvent as ResponseCodeInterpreterCallInterpretingEvent,
140152
)
153+
from .response_computer_tool_call_output_screenshot_param import (
154+
ResponseComputerToolCallOutputScreenshotParam as ResponseComputerToolCallOutputScreenshotParam,
155+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing import List, Optional
4+
from typing_extensions import Literal
5+
6+
from ..._models import BaseModel
7+
from .response_computer_tool_call_output_screenshot import ResponseComputerToolCallOutputScreenshot
8+
9+
__all__ = ["ResponseComputerToolCallOutputItem", "AcknowledgedSafetyCheck"]
10+
11+
12+
class AcknowledgedSafetyCheck(BaseModel):
13+
id: str
14+
"""The ID of the pending safety check."""
15+
16+
code: str
17+
"""The type of the pending safety check."""
18+
19+
message: str
20+
"""Details about the pending safety check."""
21+
22+
23+
class ResponseComputerToolCallOutputItem(BaseModel):
24+
id: str
25+
"""The unique ID of the computer call tool output."""
26+
27+
call_id: str
28+
"""The ID of the computer tool call that produced the output."""
29+
30+
output: ResponseComputerToolCallOutputScreenshot
31+
"""A computer screenshot image used with the computer use tool."""
32+
33+
type: Literal["computer_call_output"]
34+
"""The type of the computer tool call output. Always `computer_call_output`."""
35+
36+
acknowledged_safety_checks: Optional[List[AcknowledgedSafetyCheck]] = None
37+
"""
38+
The safety checks reported by the API that have been acknowledged by the
39+
developer.
40+
"""
41+
42+
status: Optional[Literal["in_progress", "completed", "incomplete"]] = None
43+
"""The status of the message input.
44+
45+
One of `in_progress`, `completed`, or `incomplete`. Populated when input items
46+
are returned via API.
47+
"""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing import Optional
4+
from typing_extensions import Literal
5+
6+
from ..._models import BaseModel
7+
8+
__all__ = ["ResponseComputerToolCallOutputScreenshot"]
9+
10+
11+
class ResponseComputerToolCallOutputScreenshot(BaseModel):
12+
type: Literal["computer_screenshot"]
13+
"""Specifies the event type.
14+
15+
For a computer screenshot, this property is always set to `computer_screenshot`.
16+
"""
17+
18+
file_id: Optional[str] = None
19+
"""The identifier of an uploaded file that contains the screenshot."""
20+
21+
image_url: Optional[str] = None
22+
"""The URL of the screenshot image."""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from __future__ import annotations
4+
5+
from typing_extensions import Literal, Required, TypedDict
6+
7+
__all__ = ["ResponseComputerToolCallOutputScreenshotParam"]
8+
9+
10+
class ResponseComputerToolCallOutputScreenshotParam(TypedDict, total=False):
11+
type: Required[Literal["computer_screenshot"]]
12+
"""Specifies the event type.
13+
14+
For a computer screenshot, this property is always set to `computer_screenshot`.
15+
"""
16+
17+
file_id: str
18+
"""The identifier of an uploaded file that contains the screenshot."""
19+
20+
image_url: str
21+
"""The URL of the screenshot image."""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
4+
from .response_function_tool_call import ResponseFunctionToolCall
5+
6+
__all__ = ["ResponseFunctionToolCallItem"]
7+
8+
9+
class ResponseFunctionToolCallItem(ResponseFunctionToolCall):
10+
id: str # type: ignore
11+
"""The unique ID of the function call tool output."""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing import Optional
4+
from typing_extensions import Literal
5+
6+
from ..._models import BaseModel
7+
8+
__all__ = ["ResponseFunctionToolCallOutputItem"]
9+
10+
11+
class ResponseFunctionToolCallOutputItem(BaseModel):
12+
id: str
13+
"""The unique ID of the function call tool output."""
14+
15+
call_id: str
16+
"""The unique ID of the function tool call generated by the model."""
17+
18+
output: str
19+
"""A JSON string of the output of the function tool call."""
20+
21+
type: Literal["function_call_output"]
22+
"""The type of the function tool call output. Always `function_call_output`."""
23+
24+
status: Optional[Literal["in_progress", "completed", "incomplete"]] = None
25+
"""The status of the item.
26+
27+
One of `in_progress`, `completed`, or `incomplete`. Populated when items are
28+
returned via API.
29+
"""

src/openai/types/responses/response_input_item_param.py

+2-16
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
from .response_function_web_search_param import ResponseFunctionWebSearchParam
1414
from .response_file_search_tool_call_param import ResponseFileSearchToolCallParam
1515
from .response_input_message_content_list_param import ResponseInputMessageContentListParam
16+
from .response_computer_tool_call_output_screenshot_param import ResponseComputerToolCallOutputScreenshotParam
1617

1718
__all__ = [
1819
"ResponseInputItemParam",
1920
"Message",
2021
"ComputerCallOutput",
21-
"ComputerCallOutputOutput",
2222
"ComputerCallOutputAcknowledgedSafetyCheck",
2323
"FunctionCallOutput",
2424
"ItemReference",
@@ -46,20 +46,6 @@ class Message(TypedDict, total=False):
4646
"""The type of the message input. Always set to `message`."""
4747

4848

49-
class ComputerCallOutputOutput(TypedDict, total=False):
50-
type: Required[Literal["computer_screenshot"]]
51-
"""Specifies the event type.
52-
53-
For a computer screenshot, this property is always set to `computer_screenshot`.
54-
"""
55-
56-
file_id: str
57-
"""The identifier of an uploaded file that contains the screenshot."""
58-
59-
image_url: str
60-
"""The URL of the screenshot image."""
61-
62-
6349
class ComputerCallOutputAcknowledgedSafetyCheck(TypedDict, total=False):
6450
id: Required[str]
6551
"""The ID of the pending safety check."""
@@ -75,7 +61,7 @@ class ComputerCallOutput(TypedDict, total=False):
7561
call_id: Required[str]
7662
"""The ID of the computer tool call that produced the output."""
7763

78-
output: Required[ComputerCallOutputOutput]
64+
output: Required[ResponseComputerToolCallOutputScreenshotParam]
7965
"""A computer screenshot image used with the computer use tool."""
8066

8167
type: Required[Literal["computer_call_output"]]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing import Optional
4+
from typing_extensions import Literal
5+
6+
from ..._models import BaseModel
7+
from .response_input_message_content_list import ResponseInputMessageContentList
8+
9+
__all__ = ["ResponseInputMessageItem"]
10+
11+
12+
class ResponseInputMessageItem(BaseModel):
13+
id: str
14+
"""The unique ID of the message input."""
15+
16+
content: ResponseInputMessageContentList
17+
"""
18+
A list of one or many input items to the model, containing different content
19+
types.
20+
"""
21+
22+
role: Literal["user", "system", "developer"]
23+
"""The role of the message input. One of `user`, `system`, or `developer`."""
24+
25+
status: Optional[Literal["in_progress", "completed", "incomplete"]] = None
26+
"""The status of item.
27+
28+
One of `in_progress`, `completed`, or `incomplete`. Populated when items are
29+
returned via API.
30+
"""
31+
32+
type: Optional[Literal["message"]] = None
33+
"""The type of the message input. Always set to `message`."""

0 commit comments

Comments
 (0)