openai 4.56.2 → 4.57.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/README.md +1 -1
- package/index.d.mts +1 -0
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -1
- package/index.js +4 -0
- package/index.js.map +1 -1
- package/index.mjs +4 -0
- package/index.mjs.map +1 -1
- package/lib/AssistantStream.d.ts.map +1 -1
- package/lib/AssistantStream.js +21 -0
- package/lib/AssistantStream.js.map +1 -1
- package/lib/AssistantStream.mjs +21 -0
- package/lib/AssistantStream.mjs.map +1 -1
- package/lib/ChatCompletionRunner.d.ts +1 -1
- package/lib/ChatCompletionRunner.d.ts.map +1 -1
- package/lib/ChatCompletionRunner.js +2 -2
- package/lib/ChatCompletionRunner.js.map +1 -1
- package/lib/ChatCompletionRunner.mjs +2 -2
- package/lib/ChatCompletionRunner.mjs.map +1 -1
- package/package.json +4 -2
- package/resources/beta/assistants.d.ts +54 -25
- package/resources/beta/assistants.d.ts.map +1 -1
- package/resources/beta/assistants.js.map +1 -1
- package/resources/beta/assistants.mjs.map +1 -1
- package/resources/beta/threads/runs/index.d.ts +1 -1
- package/resources/beta/threads/runs/index.d.ts.map +1 -1
- package/resources/beta/threads/runs/index.js.map +1 -1
- package/resources/beta/threads/runs/index.mjs.map +1 -1
- package/resources/beta/threads/runs/runs.d.ts +69 -53
- package/resources/beta/threads/runs/runs.d.ts.map +1 -1
- package/resources/beta/threads/runs/runs.js +4 -2
- package/resources/beta/threads/runs/runs.js.map +1 -1
- package/resources/beta/threads/runs/runs.mjs +4 -2
- package/resources/beta/threads/runs/runs.mjs.map +1 -1
- package/resources/beta/threads/runs/steps.d.ts +93 -1
- package/resources/beta/threads/runs/steps.d.ts.map +1 -1
- package/resources/beta/threads/runs/steps.js +5 -4
- package/resources/beta/threads/runs/steps.js.map +1 -1
- package/resources/beta/threads/runs/steps.mjs +5 -4
- package/resources/beta/threads/runs/steps.mjs.map +1 -1
- package/src/index.ts +7 -0
- package/src/lib/AssistantStream.ts +24 -0
- package/src/lib/ChatCompletionRunner.ts +6 -2
- package/src/resources/beta/assistants.ts +57 -25
- package/src/resources/beta/threads/runs/index.ts +2 -0
- package/src/resources/beta/threads/runs/runs.ts +78 -55
- package/src/resources/beta/threads/runs/steps.ts +123 -1
- package/src/uploads.ts +6 -1
- package/src/version.ts +1 -1
- package/uploads.d.ts.map +1 -1
- package/uploads.js +5 -1
- package/uploads.js.map +1 -1
- package/uploads.mjs +5 -1
- package/uploads.mjs.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -22,27 +22,33 @@ export class Runs extends APIResource {
|
|
|
22
22
|
/**
|
|
23
23
|
* Create a run.
|
|
24
24
|
*/
|
|
25
|
-
create(threadId: string, body: RunCreateParamsNonStreaming, options?: Core.RequestOptions): APIPromise<Run>;
|
|
26
25
|
create(
|
|
27
26
|
threadId: string,
|
|
28
|
-
|
|
27
|
+
params: RunCreateParamsNonStreaming,
|
|
28
|
+
options?: Core.RequestOptions,
|
|
29
|
+
): APIPromise<Run>;
|
|
30
|
+
create(
|
|
31
|
+
threadId: string,
|
|
32
|
+
params: RunCreateParamsStreaming,
|
|
29
33
|
options?: Core.RequestOptions,
|
|
30
34
|
): APIPromise<Stream<AssistantsAPI.AssistantStreamEvent>>;
|
|
31
35
|
create(
|
|
32
36
|
threadId: string,
|
|
33
|
-
|
|
37
|
+
params: RunCreateParamsBase,
|
|
34
38
|
options?: Core.RequestOptions,
|
|
35
39
|
): APIPromise<Stream<AssistantsAPI.AssistantStreamEvent> | Run>;
|
|
36
40
|
create(
|
|
37
41
|
threadId: string,
|
|
38
|
-
|
|
42
|
+
params: RunCreateParams,
|
|
39
43
|
options?: Core.RequestOptions,
|
|
40
44
|
): APIPromise<Run> | APIPromise<Stream<AssistantsAPI.AssistantStreamEvent>> {
|
|
45
|
+
const { include, ...body } = params;
|
|
41
46
|
return this._client.post(`/threads/${threadId}/runs`, {
|
|
47
|
+
query: { include },
|
|
42
48
|
body,
|
|
43
49
|
...options,
|
|
44
50
|
headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
|
|
45
|
-
stream:
|
|
51
|
+
stream: params.stream ?? false,
|
|
46
52
|
}) as APIPromise<Run> | APIPromise<Stream<AssistantsAPI.AssistantStreamEvent>>;
|
|
47
53
|
}
|
|
48
54
|
|
|
@@ -617,74 +623,87 @@ export type RunCreateParams = RunCreateParamsNonStreaming | RunCreateParamsStrea
|
|
|
617
623
|
|
|
618
624
|
export interface RunCreateParamsBase {
|
|
619
625
|
/**
|
|
620
|
-
* The ID of the
|
|
626
|
+
* Body param: The ID of the
|
|
621
627
|
* [assistant](https://platform.openai.com/docs/api-reference/assistants) to use to
|
|
622
628
|
* execute this run.
|
|
623
629
|
*/
|
|
624
630
|
assistant_id: string;
|
|
625
631
|
|
|
626
632
|
/**
|
|
627
|
-
*
|
|
628
|
-
*
|
|
629
|
-
*
|
|
633
|
+
* Query param: A list of additional fields to include in the response. Currently
|
|
634
|
+
* the only supported value is
|
|
635
|
+
* `step_details.tool_calls[*].file_search.results[*].content` to fetch the file
|
|
636
|
+
* search result content.
|
|
637
|
+
*
|
|
638
|
+
* See the
|
|
639
|
+
* [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
|
|
640
|
+
* for more information.
|
|
641
|
+
*/
|
|
642
|
+
include?: Array<StepsAPI.RunStepInclude>;
|
|
643
|
+
|
|
644
|
+
/**
|
|
645
|
+
* Body param: Appends additional instructions at the end of the instructions for
|
|
646
|
+
* the run. This is useful for modifying the behavior on a per-run basis without
|
|
647
|
+
* overriding other instructions.
|
|
630
648
|
*/
|
|
631
649
|
additional_instructions?: string | null;
|
|
632
650
|
|
|
633
651
|
/**
|
|
634
|
-
* Adds additional messages to the thread before creating the run.
|
|
652
|
+
* Body param: Adds additional messages to the thread before creating the run.
|
|
635
653
|
*/
|
|
636
654
|
additional_messages?: Array<RunCreateParams.AdditionalMessage> | null;
|
|
637
655
|
|
|
638
656
|
/**
|
|
639
|
-
* Overrides the
|
|
657
|
+
* Body param: Overrides the
|
|
640
658
|
* [instructions](https://platform.openai.com/docs/api-reference/assistants/createAssistant)
|
|
641
659
|
* of the assistant. This is useful for modifying the behavior on a per-run basis.
|
|
642
660
|
*/
|
|
643
661
|
instructions?: string | null;
|
|
644
662
|
|
|
645
663
|
/**
|
|
646
|
-
* The maximum number of completion tokens that may be used over the
|
|
647
|
-
* run. The run will make a best effort to use only the number of
|
|
648
|
-
* specified, across multiple turns of the run. If the run
|
|
649
|
-
* completion tokens specified, the run will end with status
|
|
650
|
-
* `incomplete_details` for more info.
|
|
664
|
+
* Body param: The maximum number of completion tokens that may be used over the
|
|
665
|
+
* course of the run. The run will make a best effort to use only the number of
|
|
666
|
+
* completion tokens specified, across multiple turns of the run. If the run
|
|
667
|
+
* exceeds the number of completion tokens specified, the run will end with status
|
|
668
|
+
* `incomplete`. See `incomplete_details` for more info.
|
|
651
669
|
*/
|
|
652
670
|
max_completion_tokens?: number | null;
|
|
653
671
|
|
|
654
672
|
/**
|
|
655
|
-
* The maximum number of prompt tokens that may be used over the course
|
|
656
|
-
* The run will make a best effort to use only the number of prompt
|
|
657
|
-
* specified, across multiple turns of the run. If the run exceeds the
|
|
658
|
-
* prompt tokens specified, the run will end with status `incomplete`.
|
|
659
|
-
* `incomplete_details` for more info.
|
|
673
|
+
* Body param: The maximum number of prompt tokens that may be used over the course
|
|
674
|
+
* of the run. The run will make a best effort to use only the number of prompt
|
|
675
|
+
* tokens specified, across multiple turns of the run. If the run exceeds the
|
|
676
|
+
* number of prompt tokens specified, the run will end with status `incomplete`.
|
|
677
|
+
* See `incomplete_details` for more info.
|
|
660
678
|
*/
|
|
661
679
|
max_prompt_tokens?: number | null;
|
|
662
680
|
|
|
663
681
|
/**
|
|
664
|
-
* Set of 16 key-value pairs that can be attached to an object. This
|
|
665
|
-
* for storing additional information about the object in a
|
|
666
|
-
* can be a maximum of 64 characters long and values can be
|
|
667
|
-
* characters long.
|
|
682
|
+
* Body param: Set of 16 key-value pairs that can be attached to an object. This
|
|
683
|
+
* can be useful for storing additional information about the object in a
|
|
684
|
+
* structured format. Keys can be a maximum of 64 characters long and values can be
|
|
685
|
+
* a maxium of 512 characters long.
|
|
668
686
|
*/
|
|
669
687
|
metadata?: unknown | null;
|
|
670
688
|
|
|
671
689
|
/**
|
|
672
|
-
* The ID of the
|
|
673
|
-
* be used to
|
|
674
|
-
*
|
|
675
|
-
* assistant
|
|
690
|
+
* Body param: The ID of the
|
|
691
|
+
* [Model](https://platform.openai.com/docs/api-reference/models) to be used to
|
|
692
|
+
* execute this run. If a value is provided here, it will override the model
|
|
693
|
+
* associated with the assistant. If not, the model associated with the assistant
|
|
694
|
+
* will be used.
|
|
676
695
|
*/
|
|
677
696
|
model?: (string & {}) | ChatAPI.ChatModel | null;
|
|
678
697
|
|
|
679
698
|
/**
|
|
680
|
-
* Whether to enable
|
|
699
|
+
* Body param: Whether to enable
|
|
681
700
|
* [parallel function calling](https://platform.openai.com/docs/guides/function-calling/parallel-function-calling)
|
|
682
701
|
* during tool use.
|
|
683
702
|
*/
|
|
684
703
|
parallel_tool_calls?: boolean;
|
|
685
704
|
|
|
686
705
|
/**
|
|
687
|
-
* Specifies the format that the model must output. Compatible with
|
|
706
|
+
* Body param: Specifies the format that the model must output. Compatible with
|
|
688
707
|
* [GPT-4o](https://platform.openai.com/docs/models/gpt-4o),
|
|
689
708
|
* [GPT-4 Turbo](https://platform.openai.com/docs/models/gpt-4-turbo-and-gpt-4),
|
|
690
709
|
* and all GPT-3.5 Turbo models since `gpt-3.5-turbo-1106`.
|
|
@@ -708,48 +727,50 @@ export interface RunCreateParamsBase {
|
|
|
708
727
|
response_format?: ThreadsAPI.AssistantResponseFormatOption | null;
|
|
709
728
|
|
|
710
729
|
/**
|
|
711
|
-
* If `true`, returns a stream of events that happen during the Run as
|
|
712
|
-
* events, terminating when the Run enters a terminal state with a
|
|
713
|
-
* message.
|
|
730
|
+
* Body param: If `true`, returns a stream of events that happen during the Run as
|
|
731
|
+
* server-sent events, terminating when the Run enters a terminal state with a
|
|
732
|
+
* `data: [DONE]` message.
|
|
714
733
|
*/
|
|
715
734
|
stream?: boolean | null;
|
|
716
735
|
|
|
717
736
|
/**
|
|
718
|
-
* What sampling temperature to use, between 0 and 2. Higher values
|
|
719
|
-
* make the output more random, while lower values like 0.2 will make
|
|
720
|
-
* focused and deterministic.
|
|
737
|
+
* Body param: What sampling temperature to use, between 0 and 2. Higher values
|
|
738
|
+
* like 0.8 will make the output more random, while lower values like 0.2 will make
|
|
739
|
+
* it more focused and deterministic.
|
|
721
740
|
*/
|
|
722
741
|
temperature?: number | null;
|
|
723
742
|
|
|
724
743
|
/**
|
|
725
|
-
* Controls which (if any) tool is called by the model. `none` means
|
|
726
|
-
* not call any tools and instead generates a message. `auto` is the
|
|
727
|
-
* and means the model can pick between generating a message or
|
|
728
|
-
* tools. `required` means the model must call one or more
|
|
729
|
-
* to the user. Specifying a particular tool like
|
|
744
|
+
* Body param: Controls which (if any) tool is called by the model. `none` means
|
|
745
|
+
* the model will not call any tools and instead generates a message. `auto` is the
|
|
746
|
+
* default value and means the model can pick between generating a message or
|
|
747
|
+
* calling one or more tools. `required` means the model must call one or more
|
|
748
|
+
* tools before responding to the user. Specifying a particular tool like
|
|
749
|
+
* `{"type": "file_search"}` or
|
|
730
750
|
* `{"type": "function", "function": {"name": "my_function"}}` forces the model to
|
|
731
751
|
* call that tool.
|
|
732
752
|
*/
|
|
733
753
|
tool_choice?: ThreadsAPI.AssistantToolChoiceOption | null;
|
|
734
754
|
|
|
735
755
|
/**
|
|
736
|
-
* Override the tools the assistant can use for this run. This is
|
|
737
|
-
* modifying the behavior on a per-run basis.
|
|
756
|
+
* Body param: Override the tools the assistant can use for this run. This is
|
|
757
|
+
* useful for modifying the behavior on a per-run basis.
|
|
738
758
|
*/
|
|
739
759
|
tools?: Array<AssistantsAPI.AssistantTool> | null;
|
|
740
760
|
|
|
741
761
|
/**
|
|
742
|
-
* An alternative to sampling with temperature, called nucleus
|
|
743
|
-
* model considers the results of the tokens with top_p
|
|
744
|
-
* means only the tokens comprising the top 10%
|
|
762
|
+
* Body param: An alternative to sampling with temperature, called nucleus
|
|
763
|
+
* sampling, where the model considers the results of the tokens with top_p
|
|
764
|
+
* probability mass. So 0.1 means only the tokens comprising the top 10%
|
|
765
|
+
* probability mass are considered.
|
|
745
766
|
*
|
|
746
767
|
* We generally recommend altering this or temperature but not both.
|
|
747
768
|
*/
|
|
748
769
|
top_p?: number | null;
|
|
749
770
|
|
|
750
771
|
/**
|
|
751
|
-
* Controls for how a thread will be truncated prior to the run. Use
|
|
752
|
-
* control the intial context window of the run.
|
|
772
|
+
* Body param: Controls for how a thread will be truncated prior to the run. Use
|
|
773
|
+
* this to control the intial context window of the run.
|
|
753
774
|
*/
|
|
754
775
|
truncation_strategy?: RunCreateParams.TruncationStrategy | null;
|
|
755
776
|
}
|
|
@@ -834,18 +855,18 @@ export namespace RunCreateParams {
|
|
|
834
855
|
|
|
835
856
|
export interface RunCreateParamsNonStreaming extends RunCreateParamsBase {
|
|
836
857
|
/**
|
|
837
|
-
* If `true`, returns a stream of events that happen during the Run as
|
|
838
|
-
* events, terminating when the Run enters a terminal state with a
|
|
839
|
-
* message.
|
|
858
|
+
* Body param: If `true`, returns a stream of events that happen during the Run as
|
|
859
|
+
* server-sent events, terminating when the Run enters a terminal state with a
|
|
860
|
+
* `data: [DONE]` message.
|
|
840
861
|
*/
|
|
841
862
|
stream?: false | null;
|
|
842
863
|
}
|
|
843
864
|
|
|
844
865
|
export interface RunCreateParamsStreaming extends RunCreateParamsBase {
|
|
845
866
|
/**
|
|
846
|
-
* If `true`, returns a stream of events that happen during the Run as
|
|
847
|
-
* events, terminating when the Run enters a terminal state with a
|
|
848
|
-
* message.
|
|
867
|
+
* Body param: If `true`, returns a stream of events that happen during the Run as
|
|
868
|
+
* server-sent events, terminating when the Run enters a terminal state with a
|
|
869
|
+
* `data: [DONE]` message.
|
|
849
870
|
*/
|
|
850
871
|
stream: true;
|
|
851
872
|
}
|
|
@@ -1630,10 +1651,12 @@ export namespace Runs {
|
|
|
1630
1651
|
export import RunStepDelta = StepsAPI.RunStepDelta;
|
|
1631
1652
|
export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent;
|
|
1632
1653
|
export import RunStepDeltaMessageDelta = StepsAPI.RunStepDeltaMessageDelta;
|
|
1654
|
+
export import RunStepInclude = StepsAPI.RunStepInclude;
|
|
1633
1655
|
export import ToolCall = StepsAPI.ToolCall;
|
|
1634
1656
|
export import ToolCallDelta = StepsAPI.ToolCallDelta;
|
|
1635
1657
|
export import ToolCallDeltaObject = StepsAPI.ToolCallDeltaObject;
|
|
1636
1658
|
export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails;
|
|
1637
1659
|
export import RunStepsPage = StepsAPI.RunStepsPage;
|
|
1660
|
+
export import StepRetrieveParams = StepsAPI.StepRetrieveParams;
|
|
1638
1661
|
export import StepListParams = StepsAPI.StepListParams;
|
|
1639
1662
|
}
|
|
@@ -14,9 +14,27 @@ export class Steps extends APIResource {
|
|
|
14
14
|
threadId: string,
|
|
15
15
|
runId: string,
|
|
16
16
|
stepId: string,
|
|
17
|
+
query?: StepRetrieveParams,
|
|
18
|
+
options?: Core.RequestOptions,
|
|
19
|
+
): Core.APIPromise<RunStep>;
|
|
20
|
+
retrieve(
|
|
21
|
+
threadId: string,
|
|
22
|
+
runId: string,
|
|
23
|
+
stepId: string,
|
|
24
|
+
options?: Core.RequestOptions,
|
|
25
|
+
): Core.APIPromise<RunStep>;
|
|
26
|
+
retrieve(
|
|
27
|
+
threadId: string,
|
|
28
|
+
runId: string,
|
|
29
|
+
stepId: string,
|
|
30
|
+
query: StepRetrieveParams | Core.RequestOptions = {},
|
|
17
31
|
options?: Core.RequestOptions,
|
|
18
32
|
): Core.APIPromise<RunStep> {
|
|
33
|
+
if (isRequestOptions(query)) {
|
|
34
|
+
return this.retrieve(threadId, runId, stepId, {}, query);
|
|
35
|
+
}
|
|
19
36
|
return this._client.get(`/threads/${threadId}/runs/${runId}/steps/${stepId}`, {
|
|
37
|
+
query,
|
|
20
38
|
...options,
|
|
21
39
|
headers: { 'OpenAI-Beta': 'assistants=v2', ...options?.headers },
|
|
22
40
|
});
|
|
@@ -229,7 +247,7 @@ export interface FileSearchToolCall {
|
|
|
229
247
|
/**
|
|
230
248
|
* For now, this is always going to be an empty object.
|
|
231
249
|
*/
|
|
232
|
-
file_search:
|
|
250
|
+
file_search: FileSearchToolCall.FileSearch;
|
|
233
251
|
|
|
234
252
|
/**
|
|
235
253
|
* The type of tool call. This is always going to be `file_search` for this type of
|
|
@@ -238,6 +256,82 @@ export interface FileSearchToolCall {
|
|
|
238
256
|
type: 'file_search';
|
|
239
257
|
}
|
|
240
258
|
|
|
259
|
+
export namespace FileSearchToolCall {
|
|
260
|
+
/**
|
|
261
|
+
* For now, this is always going to be an empty object.
|
|
262
|
+
*/
|
|
263
|
+
export interface FileSearch {
|
|
264
|
+
/**
|
|
265
|
+
* The ranking options for the file search.
|
|
266
|
+
*/
|
|
267
|
+
ranking_options?: FileSearch.RankingOptions;
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* The results of the file search.
|
|
271
|
+
*/
|
|
272
|
+
results?: Array<FileSearch.Result>;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
export namespace FileSearch {
|
|
276
|
+
/**
|
|
277
|
+
* The ranking options for the file search.
|
|
278
|
+
*/
|
|
279
|
+
export interface RankingOptions {
|
|
280
|
+
/**
|
|
281
|
+
* The ranker used for the file search.
|
|
282
|
+
*/
|
|
283
|
+
ranker: 'default_2024_08_21';
|
|
284
|
+
|
|
285
|
+
/**
|
|
286
|
+
* The score threshold for the file search. All values must be a floating point
|
|
287
|
+
* number between 0 and 1.
|
|
288
|
+
*/
|
|
289
|
+
score_threshold: number;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* A result instance of the file search.
|
|
294
|
+
*/
|
|
295
|
+
export interface Result {
|
|
296
|
+
/**
|
|
297
|
+
* The ID of the file that result was found in.
|
|
298
|
+
*/
|
|
299
|
+
file_id: string;
|
|
300
|
+
|
|
301
|
+
/**
|
|
302
|
+
* The name of the file that result was found in.
|
|
303
|
+
*/
|
|
304
|
+
file_name: string;
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* The score of the result. All values must be a floating point number between 0
|
|
308
|
+
* and 1.
|
|
309
|
+
*/
|
|
310
|
+
score: number;
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* The content of the result that was found. The content is only included if
|
|
314
|
+
* requested via the include query parameter.
|
|
315
|
+
*/
|
|
316
|
+
content?: Array<Result.Content>;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
export namespace Result {
|
|
320
|
+
export interface Content {
|
|
321
|
+
/**
|
|
322
|
+
* The text content of the file.
|
|
323
|
+
*/
|
|
324
|
+
text?: string;
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* The type of the content.
|
|
328
|
+
*/
|
|
329
|
+
type?: 'text';
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
|
|
241
335
|
export interface FileSearchToolCallDelta {
|
|
242
336
|
/**
|
|
243
337
|
* For now, this is always going to be an empty object.
|
|
@@ -558,6 +652,8 @@ export namespace RunStepDeltaMessageDelta {
|
|
|
558
652
|
}
|
|
559
653
|
}
|
|
560
654
|
|
|
655
|
+
export type RunStepInclude = 'step_details.tool_calls[*].file_search.results[*].content';
|
|
656
|
+
|
|
561
657
|
/**
|
|
562
658
|
* Details of the Code Interpreter tool call the run step was involved in.
|
|
563
659
|
*/
|
|
@@ -602,6 +698,19 @@ export interface ToolCallsStepDetails {
|
|
|
602
698
|
type: 'tool_calls';
|
|
603
699
|
}
|
|
604
700
|
|
|
701
|
+
export interface StepRetrieveParams {
|
|
702
|
+
/**
|
|
703
|
+
* A list of additional fields to include in the response. Currently the only
|
|
704
|
+
* supported value is `step_details.tool_calls[*].file_search.results[*].content`
|
|
705
|
+
* to fetch the file search result content.
|
|
706
|
+
*
|
|
707
|
+
* See the
|
|
708
|
+
* [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
|
|
709
|
+
* for more information.
|
|
710
|
+
*/
|
|
711
|
+
include?: Array<RunStepInclude>;
|
|
712
|
+
}
|
|
713
|
+
|
|
605
714
|
export interface StepListParams extends CursorPageParams {
|
|
606
715
|
/**
|
|
607
716
|
* A cursor for use in pagination. `before` is an object ID that defines your place
|
|
@@ -611,6 +720,17 @@ export interface StepListParams extends CursorPageParams {
|
|
|
611
720
|
*/
|
|
612
721
|
before?: string;
|
|
613
722
|
|
|
723
|
+
/**
|
|
724
|
+
* A list of additional fields to include in the response. Currently the only
|
|
725
|
+
* supported value is `step_details.tool_calls[*].file_search.results[*].content`
|
|
726
|
+
* to fetch the file search result content.
|
|
727
|
+
*
|
|
728
|
+
* See the
|
|
729
|
+
* [file search tool documentation](https://platform.openai.com/docs/assistants/tools/file-search/customizing-file-search-settings)
|
|
730
|
+
* for more information.
|
|
731
|
+
*/
|
|
732
|
+
include?: Array<RunStepInclude>;
|
|
733
|
+
|
|
614
734
|
/**
|
|
615
735
|
* Sort order by the `created_at` timestamp of the objects. `asc` for ascending
|
|
616
736
|
* order and `desc` for descending order.
|
|
@@ -632,10 +752,12 @@ export namespace Steps {
|
|
|
632
752
|
export import RunStepDelta = StepsAPI.RunStepDelta;
|
|
633
753
|
export import RunStepDeltaEvent = StepsAPI.RunStepDeltaEvent;
|
|
634
754
|
export import RunStepDeltaMessageDelta = StepsAPI.RunStepDeltaMessageDelta;
|
|
755
|
+
export import RunStepInclude = StepsAPI.RunStepInclude;
|
|
635
756
|
export import ToolCall = StepsAPI.ToolCall;
|
|
636
757
|
export import ToolCallDelta = StepsAPI.ToolCallDelta;
|
|
637
758
|
export import ToolCallDeltaObject = StepsAPI.ToolCallDeltaObject;
|
|
638
759
|
export import ToolCallsStepDetails = StepsAPI.ToolCallsStepDetails;
|
|
639
760
|
export import RunStepsPage = StepsAPI.RunStepsPage;
|
|
761
|
+
export import StepRetrieveParams = StepsAPI.StepRetrieveParams;
|
|
640
762
|
export import StepListParams = StepsAPI.StepListParams;
|
|
641
763
|
}
|
package/src/uploads.ts
CHANGED
|
@@ -114,7 +114,12 @@ export async function toFile(
|
|
|
114
114
|
const blob = await value.blob();
|
|
115
115
|
name ||= new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file';
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
// we need to convert the `Blob` into an array buffer because the `Blob` class
|
|
118
|
+
// that `node-fetch` defines is incompatible with the web standard which results
|
|
119
|
+
// in `new File` interpreting it as a string instead of binary data.
|
|
120
|
+
const data = isBlobLike(blob) ? [(await blob.arrayBuffer()) as any] : [blob];
|
|
121
|
+
|
|
122
|
+
return new File(data, name, options);
|
|
118
123
|
}
|
|
119
124
|
|
|
120
125
|
const bits = await getBytes(value);
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.57.1'; // x-release-please-version
|
package/uploads.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uploads.d.ts","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EACL,QAAQ,EAER,KAAK,IAAI,EACT,KAAK,eAAe,EAEpB,KAAK,YAAY,EAElB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,KAAK,YAAY,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,CAAC;AAC9F,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,IAAI,GAAG,UAAU,GAAG,QAAQ,CAAC;AAE7F;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IACxB,6EAA6E;IAC7E,KAAK,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;CAE/C;AAED;;GAEG;AACH,MAAM,WAAW,QAAS,SAAQ,QAAQ;IACxC,oFAAoF;IACpF,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC;CAC3B;AAED,eAAO,MAAM,cAAc,UAAW,GAAG,0BAIP,CAAC;AAEnC,eAAO,MAAM,UAAU,UAAW,GAAG,sBAKlB,CAAC;AAEpB;;;GAGG;AACH,eAAO,MAAM,UAAU,UAAW,GAAG;mBAAwC,QAAQ,WAAW,CAAC;CAOxD,CAAC;AAE1C,eAAO,MAAM,YAAY,UAAW,GAAG,wBAEtC,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG,OAAO,CAAC,YAAY,EAAE,MAAM,CAAC,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;AAEnG;;;;;;;;GAQG;AACH,wBAAsB,MAAM,CAC1B,KAAK,EAAE,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC,EAC7C,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAChC,OAAO,CAAC,EAAE,eAAe,GAAG,SAAS,GACpC,OAAO,CAAC,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"uploads.d.ts","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EACL,QAAQ,EAER,KAAK,IAAI,EACT,KAAK,eAAe,EAEpB,KAAK,YAAY,EAElB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,KAAK,YAAY,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,CAAC;AAC9F,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,IAAI,GAAG,UAAU,GAAG,QAAQ,CAAC;AAE7F;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IACxB,6EAA6E;IAC7E,KAAK,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;CAE/C;AAED;;GAEG;AACH,MAAM,WAAW,QAAS,SAAQ,QAAQ;IACxC,oFAAoF;IACpF,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC;CAC3B;AAED,eAAO,MAAM,cAAc,UAAW,GAAG,0BAIP,CAAC;AAEnC,eAAO,MAAM,UAAU,UAAW,GAAG,sBAKlB,CAAC;AAEpB;;;GAGG;AACH,eAAO,MAAM,UAAU,UAAW,GAAG;mBAAwC,QAAQ,WAAW,CAAC;CAOxD,CAAC;AAE1C,eAAO,MAAM,YAAY,UAAW,GAAG,wBAEtC,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG,OAAO,CAAC,YAAY,EAAE,MAAM,CAAC,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;AAEnG;;;;;;;;GAQG;AACH,wBAAsB,MAAM,CAC1B,KAAK,EAAE,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC,EAC7C,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAChC,OAAO,CAAC,EAAE,eAAe,GAAG,SAAS,GACpC,OAAO,CAAC,QAAQ,CAAC,CA+BnB;AAmDD,eAAO,MAAM,eAAe,SAAU,GAAG,0BACsD,CAAC;AAEhG;;;GAGG;AACH,eAAO,MAAM,gCAAgC,sGAO5C,CAAC;AAEF,eAAO,MAAM,2BAA2B,sGAKvC,CAAC;AAEF,eAAO,MAAM,UAAU,wDAA6D,QAAQ,QAAQ,CAInG,CAAC"}
|
package/uploads.js
CHANGED
|
@@ -48,7 +48,11 @@ async function toFile(value, name, options) {
|
|
|
48
48
|
if ((0, exports.isResponseLike)(value)) {
|
|
49
49
|
const blob = await value.blob();
|
|
50
50
|
name || (name = new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file');
|
|
51
|
-
|
|
51
|
+
// we need to convert the `Blob` into an array buffer because the `Blob` class
|
|
52
|
+
// that `node-fetch` defines is incompatible with the web standard which results
|
|
53
|
+
// in `new File` interpreting it as a string instead of binary data.
|
|
54
|
+
const data = (0, exports.isBlobLike)(blob) ? [(await blob.arrayBuffer())] : [blob];
|
|
55
|
+
return new index_1.File(data, name, options);
|
|
52
56
|
}
|
|
53
57
|
const bits = await getBytes(value);
|
|
54
58
|
name || (name = getName(value) ?? 'unknown_file');
|
package/uploads.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uploads.js","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":";;;AACA,6CAQwB;AAExB,2CAA8C;AAArC,qGAAA,YAAY,OAAA;AAiDd,MAAM,cAAc,GAAG,CAAC,KAAU,EAAyB,EAAE,CAClE,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,GAAG,KAAK,QAAQ;IAC7B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU,CAAC;AAJtB,QAAA,cAAc,kBAIQ;AAE5B,MAAM,UAAU,GAAG,CAAC,KAAU,EAAqB,EAAE,CAC1D,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,YAAY,KAAK,QAAQ;IACtC,IAAA,kBAAU,EAAC,KAAK,CAAC,CAAC;AALP,QAAA,UAAU,cAKH;AAEpB;;;GAGG;AACI,MAAM,UAAU,GAAG,CAAC,KAAU,EAA+D,EAAE,CACpG,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU;IAChC,OAAO,KAAK,CAAC,KAAK,KAAK,UAAU;IACjC,OAAO,KAAK,CAAC,WAAW,KAAK,UAAU,CAAC;AAP7B,QAAA,UAAU,cAOmB;AAEnC,MAAM,YAAY,GAAG,CAAC,KAAU,EAAuB,EAAE;IAC9D,OAAO,IAAA,kBAAU,EAAC,KAAK,CAAC,IAAI,IAAA,sBAAc,EAAC,KAAK,CAAC,IAAI,IAAA,sBAAc,EAAC,KAAK,CAAC,CAAC;AAC7E,CAAC,CAAC;AAFW,QAAA,YAAY,gBAEvB;AAIF;;;;;;;;GAQG;AACI,KAAK,UAAU,MAAM,CAC1B,KAA6C,EAC7C,IAAgC,EAChC,OAAqC;IAErC,iCAAiC;IACjC,KAAK,GAAG,MAAM,KAAK,CAAC;IAEpB,qDAAqD;IACrD,OAAO,KAAP,OAAO,GAAK,IAAA,kBAAU,EAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,EAAC;IAE5F,IAAI,IAAA,sBAAc,EAAC,KAAK,CAAC,EAAE;QACzB,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,IAAI,EAAE,CAAC;QAChC,IAAI,KAAJ,IAAI,GAAK,IAAI,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,IAAI,cAAc,EAAC;QAE5E,
|
|
1
|
+
{"version":3,"file":"uploads.js","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"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"}
|
package/uploads.mjs
CHANGED
|
@@ -40,7 +40,11 @@ export async function toFile(value, name, options) {
|
|
|
40
40
|
if (isResponseLike(value)) {
|
|
41
41
|
const blob = await value.blob();
|
|
42
42
|
name || (name = new URL(value.url).pathname.split(/[\\/]/).pop() ?? 'unknown_file');
|
|
43
|
-
|
|
43
|
+
// we need to convert the `Blob` into an array buffer because the `Blob` class
|
|
44
|
+
// that `node-fetch` defines is incompatible with the web standard which results
|
|
45
|
+
// in `new File` interpreting it as a string instead of binary data.
|
|
46
|
+
const data = isBlobLike(blob) ? [(await blob.arrayBuffer())] : [blob];
|
|
47
|
+
return new File(data, name, options);
|
|
44
48
|
}
|
|
45
49
|
const bits = await getBytes(value);
|
|
46
50
|
name || (name = getName(value) ?? 'unknown_file');
|
package/uploads.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uploads.mjs","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"OACO,EACL,QAAQ,EACR,IAAI,EAGJ,0BAA0B,EAE1B,cAAc,GACf;OAEM,EAAE,YAAY,EAAE;AAiDvB,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,KAAU,EAAyB,EAAE,CAClE,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,GAAG,KAAK,QAAQ;IAC7B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU,CAAC;AAEnC,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAAU,EAAqB,EAAE,CAC1D,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,YAAY,KAAK,QAAQ;IACtC,UAAU,CAAC,KAAK,CAAC,CAAC;AAEpB;;;GAGG;AACH,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,KAAU,EAA+D,EAAE,CACpG,KAAK,IAAI,IAAI;IACb,OAAO,KAAK,KAAK,QAAQ;IACzB,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,IAAI,KAAK,QAAQ;IAC9B,OAAO,KAAK,CAAC,IAAI,KAAK,UAAU;IAChC,OAAO,KAAK,CAAC,KAAK,KAAK,UAAU;IACjC,OAAO,KAAK,CAAC,WAAW,KAAK,UAAU,CAAC;AAE1C,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,KAAU,EAAuB,EAAE;IAC9D,OAAO,UAAU,CAAC,KAAK,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,IAAI,cAAc,CAAC,KAAK,CAAC,CAAC;AAC7E,CAAC,CAAC;AAIF;;;;;;;;GAQG;AACH,MAAM,CAAC,KAAK,UAAU,MAAM,CAC1B,KAA6C,EAC7C,IAAgC,EAChC,OAAqC;IAErC,iCAAiC;IACjC,KAAK,GAAG,MAAM,KAAK,CAAC;IAEpB,qDAAqD;IACrD,OAAO,KAAP,OAAO,GAAK,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,YAAY,EAAE,KAAK,CAAC,YAAY,EAAE,IAAI,EAAE,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC,CAAC,EAAE,EAAC;IAE5F,IAAI,cAAc,CAAC,KAAK,CAAC,EAAE;QACzB,MAAM,IAAI,GAAG,MAAM,KAAK,CAAC,IAAI,EAAE,CAAC;QAChC,IAAI,KAAJ,IAAI,GAAK,IAAI,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,IAAI,cAAc,EAAC;QAE5E,
|
|
1
|
+
{"version":3,"file":"uploads.mjs","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"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"}
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.
|
|
1
|
+
export declare const VERSION = "4.57.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '4.
|
|
1
|
+
export const VERSION = '4.57.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|