Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f5449c0

Browse files
Stainless Botdgellow
Stainless Bot
authored andcommittedAug 29, 2024·
feat(api): add file search result details to run steps (#1681)
1 parent 05fa732 commit f5449c0

14 files changed

+351
-36
lines changed
 

‎.stats.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
configured_endpoints: 68
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-8ff62fa1091460d68fbd36d72c17d91b709917bebf2983c9c4de5784bc384a2e.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai-1dbac0e95bdb5a89a0dd3d93265475a378214551b7d8c22862928e0d87ace94b.yml

‎api.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,7 @@ from openai.types.beta.threads.runs import (
365365
RunStepDelta,
366366
RunStepDeltaEvent,
367367
RunStepDeltaMessageDelta,
368+
RunStepInclude,
368369
ToolCall,
369370
ToolCallDelta,
370371
ToolCallDeltaObject,
@@ -374,7 +375,7 @@ from openai.types.beta.threads.runs import (
374375

375376
Methods:
376377

377-
- <code title="get /threads/{thread_id}/runs/{run_id}/steps/{step_id}">client.beta.threads.runs.steps.<a href="./src/openai/resources/beta/threads/runs/steps.py">retrieve</a>(step_id, \*, thread_id, run_id) -> <a href="./src/openai/types/beta/threads/runs/run_step.py">RunStep</a></code>
378+
- <code title="get /threads/{thread_id}/runs/{run_id}/steps/{step_id}">client.beta.threads.runs.steps.<a href="./src/openai/resources/beta/threads/runs/steps.py">retrieve</a>(step_id, \*, thread_id, run_id, \*\*<a href="src/openai/types/beta/threads/runs/step_retrieve_params.py">params</a>) -> <a href="./src/openai/types/beta/threads/runs/run_step.py">RunStep</a></code>
378379
- <code title="get /threads/{thread_id}/runs/{run_id}/steps">client.beta.threads.runs.steps.<a href="./src/openai/resources/beta/threads/runs/steps.py">list</a>(run_id, \*, thread_id, \*\*<a href="src/openai/types/beta/threads/runs/step_list_params.py">params</a>) -> <a href="./src/openai/types/beta/threads/runs/run_step.py">SyncCursorPage[RunStep]</a></code>
379380

380381
### Messages

‎src/openai/resources/beta/threads/runs/runs.py

+80-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import annotations
44

55
import typing_extensions
6-
from typing import Union, Iterable, Optional, overload
6+
from typing import List, Union, Iterable, Optional, overload
77
from functools import partial
88
from typing_extensions import Literal
99

@@ -49,6 +49,7 @@
4949
from .....types.beta.threads.run import Run
5050
from .....types.beta.assistant_tool_param import AssistantToolParam
5151
from .....types.beta.assistant_stream_event import AssistantStreamEvent
52+
from .....types.beta.threads.runs.run_step_include import RunStepInclude
5253
from .....types.beta.assistant_tool_choice_option_param import AssistantToolChoiceOptionParam
5354
from .....types.beta.assistant_response_format_option_param import AssistantResponseFormatOptionParam
5455

@@ -74,6 +75,7 @@ def create(
7475
thread_id: str,
7576
*,
7677
assistant_id: str,
78+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
7779
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
7880
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
7981
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -104,6 +106,14 @@ def create(
104106
[assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
105107
execute this run.
106108
109+
include: A list of additional fields to include in the response. Currently the only
110+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
111+
to fetch the file search result content.
112+
113+
See the
114+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
115+
for more information.
116+
107117
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
108118
is useful for modifying the behavior on a per-run basis without overriding other
109119
instructions.
@@ -206,6 +216,7 @@ def create(
206216
*,
207217
assistant_id: str,
208218
stream: Literal[True],
219+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
209220
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
210221
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
211222
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -239,6 +250,14 @@ def create(
239250
events, terminating when the Run enters a terminal state with a `data: [DONE]`
240251
message.
241252
253+
include: A list of additional fields to include in the response. Currently the only
254+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
255+
to fetch the file search result content.
256+
257+
See the
258+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
259+
for more information.
260+
242261
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
243262
is useful for modifying the behavior on a per-run basis without overriding other
244263
instructions.
@@ -337,6 +356,7 @@ def create(
337356
*,
338357
assistant_id: str,
339358
stream: bool,
359+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
340360
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
341361
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
342362
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -370,6 +390,14 @@ def create(
370390
events, terminating when the Run enters a terminal state with a `data: [DONE]`
371391
message.
372392
393+
include: A list of additional fields to include in the response. Currently the only
394+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
395+
to fetch the file search result content.
396+
397+
See the
398+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
399+
for more information.
400+
373401
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
374402
is useful for modifying the behavior on a per-run basis without overriding other
375403
instructions.
@@ -467,6 +495,7 @@ def create(
467495
thread_id: str,
468496
*,
469497
assistant_id: str,
498+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
470499
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
471500
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
472501
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -516,7 +545,11 @@ def create(
516545
run_create_params.RunCreateParams,
517546
),
518547
options=make_request_options(
519-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
548+
extra_headers=extra_headers,
549+
extra_query=extra_query,
550+
extra_body=extra_body,
551+
timeout=timeout,
552+
query=maybe_transform({"include": include}, run_create_params.RunCreateParams),
520553
),
521554
cast_to=Run,
522555
stream=stream or False,
@@ -712,6 +745,7 @@ def create_and_poll(
712745
self,
713746
*,
714747
assistant_id: str,
748+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
715749
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
716750
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
717751
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -743,6 +777,7 @@ def create_and_poll(
743777
run = self.create(
744778
thread_id=thread_id,
745779
assistant_id=assistant_id,
780+
include=include,
746781
additional_instructions=additional_instructions,
747782
additional_messages=additional_messages,
748783
instructions=instructions,
@@ -958,6 +993,7 @@ def stream(
958993
self,
959994
*,
960995
assistant_id: str,
996+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
961997
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
962998
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
963999
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -988,6 +1024,7 @@ def stream(
9881024
self,
9891025
*,
9901026
assistant_id: str,
1027+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
9911028
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
9921029
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
9931030
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -1018,6 +1055,7 @@ def stream(
10181055
self,
10191056
*,
10201057
assistant_id: str,
1058+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
10211059
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
10221060
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
10231061
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -1057,6 +1095,7 @@ def stream(
10571095
body=maybe_transform(
10581096
{
10591097
"assistant_id": assistant_id,
1098+
"include": include,
10601099
"additional_instructions": additional_instructions,
10611100
"additional_messages": additional_messages,
10621101
"instructions": instructions,
@@ -1387,6 +1426,7 @@ async def create(
13871426
thread_id: str,
13881427
*,
13891428
assistant_id: str,
1429+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
13901430
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
13911431
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
13921432
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -1417,6 +1457,14 @@ async def create(
14171457
[assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
14181458
execute this run.
14191459
1460+
include: A list of additional fields to include in the response. Currently the only
1461+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
1462+
to fetch the file search result content.
1463+
1464+
See the
1465+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
1466+
for more information.
1467+
14201468
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
14211469
is useful for modifying the behavior on a per-run basis without overriding other
14221470
instructions.
@@ -1519,6 +1567,7 @@ async def create(
15191567
*,
15201568
assistant_id: str,
15211569
stream: Literal[True],
1570+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
15221571
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
15231572
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
15241573
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -1552,6 +1601,14 @@ async def create(
15521601
events, terminating when the Run enters a terminal state with a `data: [DONE]`
15531602
message.
15541603
1604+
include: A list of additional fields to include in the response. Currently the only
1605+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
1606+
to fetch the file search result content.
1607+
1608+
See the
1609+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
1610+
for more information.
1611+
15551612
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
15561613
is useful for modifying the behavior on a per-run basis without overriding other
15571614
instructions.
@@ -1650,6 +1707,7 @@ async def create(
16501707
*,
16511708
assistant_id: str,
16521709
stream: bool,
1710+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
16531711
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
16541712
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
16551713
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -1683,6 +1741,14 @@ async def create(
16831741
events, terminating when the Run enters a terminal state with a `data: [DONE]`
16841742
message.
16851743
1744+
include: A list of additional fields to include in the response. Currently the only
1745+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
1746+
to fetch the file search result content.
1747+
1748+
See the
1749+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
1750+
for more information.
1751+
16861752
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
16871753
is useful for modifying the behavior on a per-run basis without overriding other
16881754
instructions.
@@ -1780,6 +1846,7 @@ async def create(
17801846
thread_id: str,
17811847
*,
17821848
assistant_id: str,
1849+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
17831850
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
17841851
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
17851852
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -1810,6 +1877,7 @@ async def create(
18101877
body=await async_maybe_transform(
18111878
{
18121879
"assistant_id": assistant_id,
1880+
"include": include,
18131881
"additional_instructions": additional_instructions,
18141882
"additional_messages": additional_messages,
18151883
"instructions": instructions,
@@ -1829,7 +1897,11 @@ async def create(
18291897
run_create_params.RunCreateParams,
18301898
),
18311899
options=make_request_options(
1832-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
1900+
extra_headers=extra_headers,
1901+
extra_query=extra_query,
1902+
extra_body=extra_body,
1903+
timeout=timeout,
1904+
query=await async_maybe_transform({"include": include}, run_create_params.RunCreateParams),
18331905
),
18341906
cast_to=Run,
18351907
stream=stream or False,
@@ -2025,6 +2097,7 @@ async def create_and_poll(
20252097
self,
20262098
*,
20272099
assistant_id: str,
2100+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
20282101
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
20292102
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
20302103
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -2056,6 +2129,7 @@ async def create_and_poll(
20562129
run = await self.create(
20572130
thread_id=thread_id,
20582131
assistant_id=assistant_id,
2132+
include=include,
20592133
additional_instructions=additional_instructions,
20602134
additional_messages=additional_messages,
20612135
instructions=instructions,
@@ -2303,6 +2377,7 @@ def stream(
23032377
self,
23042378
*,
23052379
assistant_id: str,
2380+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
23062381
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
23072382
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
23082383
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -2333,6 +2408,7 @@ def stream(
23332408
self,
23342409
*,
23352410
assistant_id: str,
2411+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
23362412
additional_instructions: Optional[str] | NotGiven = NOT_GIVEN,
23372413
additional_messages: Optional[Iterable[run_create_params.AdditionalMessage]] | NotGiven = NOT_GIVEN,
23382414
instructions: Optional[str] | NotGiven = NOT_GIVEN,
@@ -2374,6 +2450,7 @@ def stream(
23742450
body=maybe_transform(
23752451
{
23762452
"assistant_id": assistant_id,
2453+
"include": include,
23772454
"additional_instructions": additional_instructions,
23782455
"additional_messages": additional_messages,
23792456
"instructions": instructions,

‎src/openai/resources/beta/threads/runs/steps.py

+56-8
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,25 @@
22

33
from __future__ import annotations
44

5+
from typing import List
56
from typing_extensions import Literal
67

78
import httpx
89

910
from ..... import _legacy_response
1011
from ....._types import NOT_GIVEN, Body, Query, Headers, NotGiven
11-
from ....._utils import maybe_transform
12+
from ....._utils import (
13+
maybe_transform,
14+
async_maybe_transform,
15+
)
1216
from ....._compat import cached_property
1317
from ....._resource import SyncAPIResource, AsyncAPIResource
1418
from ....._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
1519
from .....pagination import SyncCursorPage, AsyncCursorPage
16-
from ....._base_client import (
17-
AsyncPaginator,
18-
make_request_options,
19-
)
20-
from .....types.beta.threads.runs import step_list_params
20+
from ....._base_client import AsyncPaginator, make_request_options
21+
from .....types.beta.threads.runs import step_list_params, step_retrieve_params
2122
from .....types.beta.threads.runs.run_step import RunStep
23+
from .....types.beta.threads.runs.run_step_include import RunStepInclude
2224

2325
__all__ = ["Steps", "AsyncSteps"]
2426

@@ -38,6 +40,7 @@ def retrieve(
3840
*,
3941
thread_id: str,
4042
run_id: str,
43+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
4144
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
4245
# The extra values given here take precedence over values defined on the client or passed to this method.
4346
extra_headers: Headers | None = None,
@@ -49,6 +52,14 @@ def retrieve(
4952
Retrieves a run step.
5053
5154
Args:
55+
include: A list of additional fields to include in the response. Currently the only
56+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
57+
to fetch the file search result content.
58+
59+
See the
60+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
61+
for more information.
62+
5263
extra_headers: Send extra headers
5364
5465
extra_query: Add additional query parameters to the request
@@ -67,7 +78,11 @@ def retrieve(
6778
return self._get(
6879
f"/threads/{thread_id}/runs/{run_id}/steps/{step_id}",
6980
options=make_request_options(
70-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
81+
extra_headers=extra_headers,
82+
extra_query=extra_query,
83+
extra_body=extra_body,
84+
timeout=timeout,
85+
query=maybe_transform({"include": include}, step_retrieve_params.StepRetrieveParams),
7186
),
7287
cast_to=RunStep,
7388
)
@@ -79,6 +94,7 @@ def list(
7994
thread_id: str,
8095
after: str | NotGiven = NOT_GIVEN,
8196
before: str | NotGiven = NOT_GIVEN,
97+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
8298
limit: int | NotGiven = NOT_GIVEN,
8399
order: Literal["asc", "desc"] | NotGiven = NOT_GIVEN,
84100
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -102,6 +118,14 @@ def list(
102118
ending with obj_foo, your subsequent call can include before=obj_foo in order to
103119
fetch the previous page of the list.
104120
121+
include: A list of additional fields to include in the response. Currently the only
122+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
123+
to fetch the file search result content.
124+
125+
See the
126+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
127+
for more information.
128+
105129
limit: A limit on the number of objects to be returned. Limit can range between 1 and
106130
100, and the default is 20.
107131
@@ -133,6 +157,7 @@ def list(
133157
{
134158
"after": after,
135159
"before": before,
160+
"include": include,
136161
"limit": limit,
137162
"order": order,
138163
},
@@ -158,6 +183,7 @@ async def retrieve(
158183
*,
159184
thread_id: str,
160185
run_id: str,
186+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
161187
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
162188
# The extra values given here take precedence over values defined on the client or passed to this method.
163189
extra_headers: Headers | None = None,
@@ -169,6 +195,14 @@ async def retrieve(
169195
Retrieves a run step.
170196
171197
Args:
198+
include: A list of additional fields to include in the response. Currently the only
199+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
200+
to fetch the file search result content.
201+
202+
See the
203+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
204+
for more information.
205+
172206
extra_headers: Send extra headers
173207
174208
extra_query: Add additional query parameters to the request
@@ -187,7 +221,11 @@ async def retrieve(
187221
return await self._get(
188222
f"/threads/{thread_id}/runs/{run_id}/steps/{step_id}",
189223
options=make_request_options(
190-
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
224+
extra_headers=extra_headers,
225+
extra_query=extra_query,
226+
extra_body=extra_body,
227+
timeout=timeout,
228+
query=await async_maybe_transform({"include": include}, step_retrieve_params.StepRetrieveParams),
191229
),
192230
cast_to=RunStep,
193231
)
@@ -199,6 +237,7 @@ def list(
199237
thread_id: str,
200238
after: str | NotGiven = NOT_GIVEN,
201239
before: str | NotGiven = NOT_GIVEN,
240+
include: List[RunStepInclude] | NotGiven = NOT_GIVEN,
202241
limit: int | NotGiven = NOT_GIVEN,
203242
order: Literal["asc", "desc"] | NotGiven = NOT_GIVEN,
204243
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -222,6 +261,14 @@ def list(
222261
ending with obj_foo, your subsequent call can include before=obj_foo in order to
223262
fetch the previous page of the list.
224263
264+
include: A list of additional fields to include in the response. Currently the only
265+
supported value is `step_details.tool_calls[*].file_search.results[*].content`
266+
to fetch the file search result content.
267+
268+
See the
269+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
270+
for more information.
271+
225272
limit: A limit on the number of objects to be returned. Limit can range between 1 and
226273
100, and the default is 20.
227274
@@ -253,6 +300,7 @@ def list(
253300
{
254301
"after": after,
255302
"before": before,
303+
"include": include,
256304
"limit": limit,
257305
"order": order,
258306
},

‎src/openai/types/beta/file_search_tool.py

+24-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,21 @@
55

66
from ..._models import BaseModel
77

8-
__all__ = ["FileSearchTool", "FileSearch"]
8+
__all__ = ["FileSearchTool", "FileSearch", "FileSearchRankingOptions"]
9+
10+
11+
class FileSearchRankingOptions(BaseModel):
12+
ranker: Optional[Literal["auto", "default_2024_08_21"]] = None
13+
"""The ranker to use for the file search.
14+
15+
If not specified will use the `auto` ranker.
16+
"""
17+
18+
score_threshold: Optional[float] = None
19+
"""The score threshold for the file search.
20+
21+
All values must be a floating point number between 0 and 1.
22+
"""
923

1024

1125
class FileSearch(BaseModel):
@@ -17,7 +31,15 @@ class FileSearch(BaseModel):
1731
1832
Note that the file search tool may output fewer than `max_num_results` results.
1933
See the
20-
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/number-of-chunks-returned)
34+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
35+
for more information.
36+
"""
37+
38+
ranking_options: Optional[FileSearchRankingOptions] = None
39+
"""The ranking options for the file search.
40+
41+
See the
42+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
2143
for more information.
2244
"""
2345

‎src/openai/types/beta/file_search_tool_param.py

+24-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@
44

55
from typing_extensions import Literal, Required, TypedDict
66

7-
__all__ = ["FileSearchToolParam", "FileSearch"]
7+
__all__ = ["FileSearchToolParam", "FileSearch", "FileSearchRankingOptions"]
8+
9+
10+
class FileSearchRankingOptions(TypedDict, total=False):
11+
ranker: Literal["auto", "default_2024_08_21"]
12+
"""The ranker to use for the file search.
13+
14+
If not specified will use the `auto` ranker.
15+
"""
16+
17+
score_threshold: float
18+
"""The score threshold for the file search.
19+
20+
All values must be a floating point number between 0 and 1.
21+
"""
822

923

1024
class FileSearch(TypedDict, total=False):
@@ -16,7 +30,15 @@ class FileSearch(TypedDict, total=False):
1630
1731
Note that the file search tool may output fewer than `max_num_results` results.
1832
See the
19-
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/number-of-chunks-returned)
33+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
34+
for more information.
35+
"""
36+
37+
ranking_options: FileSearchRankingOptions
38+
"""The ranking options for the file search.
39+
40+
See the
41+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
2042
for more information.
2143
"""
2244

‎src/openai/types/beta/threads/run_create_params.py

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
from __future__ import annotations
44

5-
from typing import Union, Iterable, Optional
5+
from typing import List, Union, Iterable, Optional
66
from typing_extensions import Literal, Required, TypeAlias, TypedDict
77

88
from ...chat_model import ChatModel
99
from ..assistant_tool_param import AssistantToolParam
10+
from .runs.run_step_include import RunStepInclude
1011
from .message_content_part_param import MessageContentPartParam
1112
from ..code_interpreter_tool_param import CodeInterpreterToolParam
1213
from ..assistant_tool_choice_option_param import AssistantToolChoiceOptionParam
@@ -32,6 +33,18 @@ class RunCreateParamsBase(TypedDict, total=False):
3233
execute this run.
3334
"""
3435

36+
include: List[RunStepInclude]
37+
"""A list of additional fields to include in the response.
38+
39+
Currently the only supported value is
40+
`step_details.tool_calls[*].file_search.results[*].content` to fetch the file
41+
search result content.
42+
43+
See the
44+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
45+
for more information.
46+
"""
47+
3548
additional_instructions: Optional[str]
3649
"""Appends additional instructions at the end of the instructions for the run.
3750

‎src/openai/types/beta/threads/runs/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
from .tool_call import ToolCall as ToolCall
77
from .run_step_delta import RunStepDelta as RunStepDelta
88
from .tool_call_delta import ToolCallDelta as ToolCallDelta
9+
from .run_step_include import RunStepInclude as RunStepInclude
910
from .step_list_params import StepListParams as StepListParams
1011
from .function_tool_call import FunctionToolCall as FunctionToolCall
1112
from .run_step_delta_event import RunStepDeltaEvent as RunStepDeltaEvent
13+
from .step_retrieve_params import StepRetrieveParams as StepRetrieveParams
1214
from .code_interpreter_logs import CodeInterpreterLogs as CodeInterpreterLogs
1315
from .file_search_tool_call import FileSearchToolCall as FileSearchToolCall
1416
from .tool_call_delta_object import ToolCallDeltaObject as ToolCallDeltaObject

‎src/openai/types/beta/threads/runs/file_search_tool_call.py

+56-2
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,71 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3+
from typing import List, Optional
34
from typing_extensions import Literal
45

56
from ....._models import BaseModel
67

7-
__all__ = ["FileSearchToolCall"]
8+
__all__ = [
9+
"FileSearchToolCall",
10+
"FileSearch",
11+
"FileSearchRankingOptions",
12+
"FileSearchResult",
13+
"FileSearchResultContent",
14+
]
15+
16+
17+
class FileSearchRankingOptions(BaseModel):
18+
ranker: Literal["default_2024_08_21"]
19+
"""The ranker used for the file search."""
20+
21+
score_threshold: float
22+
"""The score threshold for the file search.
23+
24+
All values must be a floating point number between 0 and 1.
25+
"""
26+
27+
28+
class FileSearchResultContent(BaseModel):
29+
text: Optional[str] = None
30+
"""The text content of the file."""
31+
32+
type: Optional[Literal["text"]] = None
33+
"""The type of the content."""
34+
35+
36+
class FileSearchResult(BaseModel):
37+
file_id: str
38+
"""The ID of the file that result was found in."""
39+
40+
file_name: str
41+
"""The name of the file that result was found in."""
42+
43+
score: float
44+
"""The score of the result.
45+
46+
All values must be a floating point number between 0 and 1.
47+
"""
48+
49+
content: Optional[List[FileSearchResultContent]] = None
50+
"""The content of the result that was found.
51+
52+
The content is only included if requested via the include query parameter.
53+
"""
54+
55+
56+
class FileSearch(BaseModel):
57+
ranking_options: Optional[FileSearchRankingOptions] = None
58+
"""The ranking options for the file search."""
59+
60+
results: Optional[List[FileSearchResult]] = None
61+
"""The results of the file search."""
862

963

1064
class FileSearchToolCall(BaseModel):
1165
id: str
1266
"""The ID of the tool call object."""
1367

14-
file_search: object
68+
file_search: FileSearch
1569
"""For now, this is always going to be an empty object."""
1670

1771
type: Literal["file_search"]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from typing_extensions import Literal, TypeAlias
4+
5+
__all__ = ["RunStepInclude"]
6+
7+
RunStepInclude: TypeAlias = Literal["step_details.tool_calls[*].file_search.results[*].content"]

‎src/openai/types/beta/threads/runs/step_list_params.py

+15
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22

33
from __future__ import annotations
44

5+
from typing import List
56
from typing_extensions import Literal, Required, TypedDict
67

8+
from .run_step_include import RunStepInclude
9+
710
__all__ = ["StepListParams"]
811

912

@@ -28,6 +31,18 @@ class StepListParams(TypedDict, total=False):
2831
of the list.
2932
"""
3033

34+
include: List[RunStepInclude]
35+
"""A list of additional fields to include in the response.
36+
37+
Currently the only supported value is
38+
`step_details.tool_calls[*].file_search.results[*].content` to fetch the file
39+
search result content.
40+
41+
See the
42+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
43+
for more information.
44+
"""
45+
3146
limit: int
3247
"""A limit on the number of objects to be returned.
3348
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from __future__ import annotations
4+
5+
from typing import List
6+
from typing_extensions import Required, TypedDict
7+
8+
from .run_step_include import RunStepInclude
9+
10+
__all__ = ["StepRetrieveParams"]
11+
12+
13+
class StepRetrieveParams(TypedDict, total=False):
14+
thread_id: Required[str]
15+
16+
run_id: Required[str]
17+
18+
include: List[RunStepInclude]
19+
"""A list of additional fields to include in the response.
20+
21+
Currently the only supported value is
22+
`step_details.tool_calls[*].file_search.results[*].content` to fetch the file
23+
search result content.
24+
25+
See the
26+
[file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
27+
for more information.
28+
"""

‎tests/api_resources/beta/threads/runs/test_steps.py

+30-8
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ def test_method_retrieve(self, client: OpenAI) -> None:
2727
)
2828
assert_matches_type(RunStep, step, path=["response"])
2929

30+
@parametrize
31+
def test_method_retrieve_with_all_params(self, client: OpenAI) -> None:
32+
step = client.beta.threads.runs.steps.retrieve(
33+
step_id="step_id",
34+
thread_id="thread_id",
35+
run_id="run_id",
36+
include=["step_details.tool_calls[*].file_search.results[*].content"],
37+
)
38+
assert_matches_type(RunStep, step, path=["response"])
39+
3040
@parametrize
3141
def test_raw_response_retrieve(self, client: OpenAI) -> None:
3242
response = client.beta.threads.runs.steps.with_raw_response.retrieve(
@@ -89,10 +99,11 @@ def test_method_list(self, client: OpenAI) -> None:
8999
@parametrize
90100
def test_method_list_with_all_params(self, client: OpenAI) -> None:
91101
step = client.beta.threads.runs.steps.list(
92-
"string",
93-
thread_id="string",
94-
after="string",
95-
before="string",
102+
run_id="run_id",
103+
thread_id="thread_id",
104+
after="after",
105+
before="before",
106+
include=["step_details.tool_calls[*].file_search.results[*].content"],
96107
limit=0,
97108
order="asc",
98109
)
@@ -151,6 +162,16 @@ async def test_method_retrieve(self, async_client: AsyncOpenAI) -> None:
151162
)
152163
assert_matches_type(RunStep, step, path=["response"])
153164

165+
@parametrize
166+
async def test_method_retrieve_with_all_params(self, async_client: AsyncOpenAI) -> None:
167+
step = await async_client.beta.threads.runs.steps.retrieve(
168+
step_id="step_id",
169+
thread_id="thread_id",
170+
run_id="run_id",
171+
include=["step_details.tool_calls[*].file_search.results[*].content"],
172+
)
173+
assert_matches_type(RunStep, step, path=["response"])
174+
154175
@parametrize
155176
async def test_raw_response_retrieve(self, async_client: AsyncOpenAI) -> None:
156177
response = await async_client.beta.threads.runs.steps.with_raw_response.retrieve(
@@ -213,10 +234,11 @@ async def test_method_list(self, async_client: AsyncOpenAI) -> None:
213234
@parametrize
214235
async def test_method_list_with_all_params(self, async_client: AsyncOpenAI) -> None:
215236
step = await async_client.beta.threads.runs.steps.list(
216-
"string",
217-
thread_id="string",
218-
after="string",
219-
before="string",
237+
run_id="run_id",
238+
thread_id="thread_id",
239+
after="after",
240+
before="before",
241+
include=["step_details.tool_calls[*].file_search.results[*].content"],
220242
limit=0,
221243
order="asc",
222244
)

‎tests/api_resources/beta/threads/test_runs.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ def test_method_create_overload_1(self, client: OpenAI) -> None:
3333
@parametrize
3434
def test_method_create_with_all_params_overload_1(self, client: OpenAI) -> None:
3535
run = client.beta.threads.runs.create(
36-
"string",
37-
assistant_id="string",
38-
additional_instructions="string",
36+
thread_id="thread_id",
37+
assistant_id="assistant_id",
38+
include=["step_details.tool_calls[*].file_search.results[*].content"],
39+
additional_instructions="additional_instructions",
3940
additional_messages=[
4041
{
4142
"content": "string",
@@ -199,7 +200,8 @@ def test_method_create_with_all_params_overload_2(self, client: OpenAI) -> None:
199200
"string",
200201
assistant_id="string",
201202
stream=True,
202-
additional_instructions="string",
203+
include=["step_details.tool_calls[*].file_search.results[*].content"],
204+
additional_instructions="additional_instructions",
203205
additional_messages=[
204206
{
205207
"content": "string",
@@ -699,9 +701,10 @@ async def test_method_create_overload_1(self, async_client: AsyncOpenAI) -> None
699701
@parametrize
700702
async def test_method_create_with_all_params_overload_1(self, async_client: AsyncOpenAI) -> None:
701703
run = await async_client.beta.threads.runs.create(
702-
"string",
703-
assistant_id="string",
704-
additional_instructions="string",
704+
thread_id="thread_id",
705+
assistant_id="assistant_id",
706+
include=["step_details.tool_calls[*].file_search.results[*].content"],
707+
additional_instructions="additional_instructions",
705708
additional_messages=[
706709
{
707710
"content": "string",
@@ -865,7 +868,8 @@ async def test_method_create_with_all_params_overload_2(self, async_client: Asyn
865868
"string",
866869
assistant_id="string",
867870
stream=True,
868-
additional_instructions="string",
871+
include=["step_details.tool_calls[*].file_search.results[*].content"],
872+
additional_instructions="additional_instructions",
869873
additional_messages=[
870874
{
871875
"content": "string",

0 commit comments

Comments
 (0)
Please sign in to comment.