3
3
from __future__ import annotations
4
4
5
5
import typing_extensions
6
- from typing import Union , Iterable , Optional , overload
6
+ from typing import List , Union , Iterable , Optional , overload
7
7
from functools import partial
8
8
from typing_extensions import Literal
9
9
49
49
from .....types .beta .threads .run import Run
50
50
from .....types .beta .assistant_tool_param import AssistantToolParam
51
51
from .....types .beta .assistant_stream_event import AssistantStreamEvent
52
+ from .....types .beta .threads .runs .run_step_include import RunStepInclude
52
53
from .....types .beta .assistant_tool_choice_option_param import AssistantToolChoiceOptionParam
53
54
from .....types .beta .assistant_response_format_option_param import AssistantResponseFormatOptionParam
54
55
@@ -74,6 +75,7 @@ def create(
74
75
thread_id : str ,
75
76
* ,
76
77
assistant_id : str ,
78
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
77
79
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
78
80
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
79
81
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -104,6 +106,14 @@ def create(
104
106
[assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
105
107
execute this run.
106
108
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
+
107
117
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
108
118
is useful for modifying the behavior on a per-run basis without overriding other
109
119
instructions.
@@ -206,6 +216,7 @@ def create(
206
216
* ,
207
217
assistant_id : str ,
208
218
stream : Literal [True ],
219
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
209
220
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
210
221
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
211
222
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -239,6 +250,14 @@ def create(
239
250
events, terminating when the Run enters a terminal state with a `data: [DONE]`
240
251
message.
241
252
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
+
242
261
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
243
262
is useful for modifying the behavior on a per-run basis without overriding other
244
263
instructions.
@@ -337,6 +356,7 @@ def create(
337
356
* ,
338
357
assistant_id : str ,
339
358
stream : bool ,
359
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
340
360
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
341
361
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
342
362
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -370,6 +390,14 @@ def create(
370
390
events, terminating when the Run enters a terminal state with a `data: [DONE]`
371
391
message.
372
392
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
+
373
401
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
374
402
is useful for modifying the behavior on a per-run basis without overriding other
375
403
instructions.
@@ -467,6 +495,7 @@ def create(
467
495
thread_id : str ,
468
496
* ,
469
497
assistant_id : str ,
498
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
470
499
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
471
500
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
472
501
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -516,7 +545,11 @@ def create(
516
545
run_create_params .RunCreateParams ,
517
546
),
518
547
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 ),
520
553
),
521
554
cast_to = Run ,
522
555
stream = stream or False ,
@@ -712,6 +745,7 @@ def create_and_poll(
712
745
self ,
713
746
* ,
714
747
assistant_id : str ,
748
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
715
749
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
716
750
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
717
751
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -743,6 +777,7 @@ def create_and_poll(
743
777
run = self .create (
744
778
thread_id = thread_id ,
745
779
assistant_id = assistant_id ,
780
+ include = include ,
746
781
additional_instructions = additional_instructions ,
747
782
additional_messages = additional_messages ,
748
783
instructions = instructions ,
@@ -958,6 +993,7 @@ def stream(
958
993
self ,
959
994
* ,
960
995
assistant_id : str ,
996
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
961
997
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
962
998
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
963
999
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -988,6 +1024,7 @@ def stream(
988
1024
self ,
989
1025
* ,
990
1026
assistant_id : str ,
1027
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
991
1028
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
992
1029
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
993
1030
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -1018,6 +1055,7 @@ def stream(
1018
1055
self ,
1019
1056
* ,
1020
1057
assistant_id : str ,
1058
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
1021
1059
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
1022
1060
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
1023
1061
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -1057,6 +1095,7 @@ def stream(
1057
1095
body = maybe_transform (
1058
1096
{
1059
1097
"assistant_id" : assistant_id ,
1098
+ "include" : include ,
1060
1099
"additional_instructions" : additional_instructions ,
1061
1100
"additional_messages" : additional_messages ,
1062
1101
"instructions" : instructions ,
@@ -1387,6 +1426,7 @@ async def create(
1387
1426
thread_id : str ,
1388
1427
* ,
1389
1428
assistant_id : str ,
1429
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
1390
1430
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
1391
1431
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
1392
1432
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -1417,6 +1457,14 @@ async def create(
1417
1457
[assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
1418
1458
execute this run.
1419
1459
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
+
1420
1468
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
1421
1469
is useful for modifying the behavior on a per-run basis without overriding other
1422
1470
instructions.
@@ -1519,6 +1567,7 @@ async def create(
1519
1567
* ,
1520
1568
assistant_id : str ,
1521
1569
stream : Literal [True ],
1570
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
1522
1571
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
1523
1572
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
1524
1573
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -1552,6 +1601,14 @@ async def create(
1552
1601
events, terminating when the Run enters a terminal state with a `data: [DONE]`
1553
1602
message.
1554
1603
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
+
1555
1612
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
1556
1613
is useful for modifying the behavior on a per-run basis without overriding other
1557
1614
instructions.
@@ -1650,6 +1707,7 @@ async def create(
1650
1707
* ,
1651
1708
assistant_id : str ,
1652
1709
stream : bool ,
1710
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
1653
1711
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
1654
1712
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
1655
1713
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -1683,6 +1741,14 @@ async def create(
1683
1741
events, terminating when the Run enters a terminal state with a `data: [DONE]`
1684
1742
message.
1685
1743
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
+
1686
1752
additional_instructions: Appends additional instructions at the end of the instructions for the run. This
1687
1753
is useful for modifying the behavior on a per-run basis without overriding other
1688
1754
instructions.
@@ -1780,6 +1846,7 @@ async def create(
1780
1846
thread_id : str ,
1781
1847
* ,
1782
1848
assistant_id : str ,
1849
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
1783
1850
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
1784
1851
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
1785
1852
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -1810,6 +1877,7 @@ async def create(
1810
1877
body = await async_maybe_transform (
1811
1878
{
1812
1879
"assistant_id" : assistant_id ,
1880
+ "include" : include ,
1813
1881
"additional_instructions" : additional_instructions ,
1814
1882
"additional_messages" : additional_messages ,
1815
1883
"instructions" : instructions ,
@@ -1829,7 +1897,11 @@ async def create(
1829
1897
run_create_params .RunCreateParams ,
1830
1898
),
1831
1899
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 ),
1833
1905
),
1834
1906
cast_to = Run ,
1835
1907
stream = stream or False ,
@@ -2025,6 +2097,7 @@ async def create_and_poll(
2025
2097
self ,
2026
2098
* ,
2027
2099
assistant_id : str ,
2100
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
2028
2101
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
2029
2102
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
2030
2103
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -2056,6 +2129,7 @@ async def create_and_poll(
2056
2129
run = await self .create (
2057
2130
thread_id = thread_id ,
2058
2131
assistant_id = assistant_id ,
2132
+ include = include ,
2059
2133
additional_instructions = additional_instructions ,
2060
2134
additional_messages = additional_messages ,
2061
2135
instructions = instructions ,
@@ -2303,6 +2377,7 @@ def stream(
2303
2377
self ,
2304
2378
* ,
2305
2379
assistant_id : str ,
2380
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
2306
2381
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
2307
2382
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
2308
2383
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -2333,6 +2408,7 @@ def stream(
2333
2408
self ,
2334
2409
* ,
2335
2410
assistant_id : str ,
2411
+ include : List [RunStepInclude ] | NotGiven = NOT_GIVEN ,
2336
2412
additional_instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
2337
2413
additional_messages : Optional [Iterable [run_create_params .AdditionalMessage ]] | NotGiven = NOT_GIVEN ,
2338
2414
instructions : Optional [str ] | NotGiven = NOT_GIVEN ,
@@ -2374,6 +2450,7 @@ def stream(
2374
2450
body = maybe_transform (
2375
2451
{
2376
2452
"assistant_id" : assistant_id ,
2453
+ "include" : include ,
2377
2454
"additional_instructions" : additional_instructions ,
2378
2455
"additional_messages" : additional_messages ,
2379
2456
"instructions" : instructions ,
0 commit comments