openai 7.6.0 → 7.7.0
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 +12 -0
- package/core/streaming.d.mts.map +1 -1
- package/core/streaming.d.ts.map +1 -1
- package/core/streaming.js +158 -7
- package/core/streaming.js.map +1 -1
- package/core/streaming.mjs +158 -7
- package/core/streaming.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/beta/responses/responses.d.mts +8 -8
- package/resources/beta/responses/responses.d.mts.map +1 -1
- package/resources/beta/responses/responses.d.ts +8 -8
- package/resources/beta/responses/responses.d.ts.map +1 -1
- package/resources/responses/responses.d.mts +8 -8
- package/resources/responses/responses.d.mts.map +1 -1
- package/resources/responses/responses.d.ts +8 -8
- package/resources/responses/responses.d.ts.map +1 -1
- package/src/core/streaming.ts +155 -10
- package/src/resources/beta/responses/responses.ts +10 -10
- package/src/resources/responses/responses.ts +10 -10
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -4064,11 +4064,6 @@ export interface BetaResponseFunctionToolCallOutputItem {
|
|
|
4064
4064
|
*/
|
|
4065
4065
|
id: string;
|
|
4066
4066
|
|
|
4067
|
-
/**
|
|
4068
|
-
* The unique ID of the function tool call generated by the model.
|
|
4069
|
-
*/
|
|
4070
|
-
call_id: string;
|
|
4071
|
-
|
|
4072
4067
|
/**
|
|
4073
4068
|
* The output from the function call generated by your code. Can be a string or an
|
|
4074
4069
|
* list of output content.
|
|
@@ -4091,6 +4086,11 @@ export interface BetaResponseFunctionToolCallOutputItem {
|
|
|
4091
4086
|
*/
|
|
4092
4087
|
agent?: BetaResponseFunctionToolCallOutputItem.Agent | null;
|
|
4093
4088
|
|
|
4089
|
+
/**
|
|
4090
|
+
* The unique ID of the function tool call generated by the model.
|
|
4091
|
+
*/
|
|
4092
|
+
call_id?: string;
|
|
4093
|
+
|
|
4094
4094
|
/**
|
|
4095
4095
|
* The execution context that produced this tool call.
|
|
4096
4096
|
*/
|
|
@@ -5106,11 +5106,6 @@ export namespace BetaResponseInputItem {
|
|
|
5106
5106
|
* The output of a function tool call.
|
|
5107
5107
|
*/
|
|
5108
5108
|
export interface FunctionCallOutput {
|
|
5109
|
-
/**
|
|
5110
|
-
* The unique ID of the function tool call generated by the model.
|
|
5111
|
-
*/
|
|
5112
|
-
call_id: string;
|
|
5113
|
-
|
|
5114
5109
|
/**
|
|
5115
5110
|
* Text, image, or file output of the function tool call.
|
|
5116
5111
|
*/
|
|
@@ -5132,6 +5127,11 @@ export namespace BetaResponseInputItem {
|
|
|
5132
5127
|
*/
|
|
5133
5128
|
agent?: FunctionCallOutput.Agent | null;
|
|
5134
5129
|
|
|
5130
|
+
/**
|
|
5131
|
+
* The unique ID of the function tool call generated by the model.
|
|
5132
|
+
*/
|
|
5133
|
+
call_id?: string | null;
|
|
5134
|
+
|
|
5135
5135
|
/**
|
|
5136
5136
|
* The execution context that produced this tool call.
|
|
5137
5137
|
*/
|
|
@@ -3475,11 +3475,6 @@ export interface ResponseFunctionToolCallOutputItem {
|
|
|
3475
3475
|
*/
|
|
3476
3476
|
id: string;
|
|
3477
3477
|
|
|
3478
|
-
/**
|
|
3479
|
-
* The unique ID of the function tool call generated by the model.
|
|
3480
|
-
*/
|
|
3481
|
-
call_id: string;
|
|
3482
|
-
|
|
3483
3478
|
/**
|
|
3484
3479
|
* The output from the function call generated by your code. Can be a string or an
|
|
3485
3480
|
* list of output content.
|
|
@@ -3497,6 +3492,11 @@ export interface ResponseFunctionToolCallOutputItem {
|
|
|
3497
3492
|
*/
|
|
3498
3493
|
type: 'function_call_output';
|
|
3499
3494
|
|
|
3495
|
+
/**
|
|
3496
|
+
* The unique ID of the function tool call generated by the model.
|
|
3497
|
+
*/
|
|
3498
|
+
call_id?: string;
|
|
3499
|
+
|
|
3500
3500
|
/**
|
|
3501
3501
|
* The execution context that produced this tool call.
|
|
3502
3502
|
*/
|
|
@@ -4246,11 +4246,6 @@ export namespace ResponseInputItem {
|
|
|
4246
4246
|
* The output of a function tool call.
|
|
4247
4247
|
*/
|
|
4248
4248
|
export interface FunctionCallOutput {
|
|
4249
|
-
/**
|
|
4250
|
-
* The unique ID of the function tool call generated by the model.
|
|
4251
|
-
*/
|
|
4252
|
-
call_id: string;
|
|
4253
|
-
|
|
4254
4249
|
/**
|
|
4255
4250
|
* Text, image, or file output of the function tool call.
|
|
4256
4251
|
*/
|
|
@@ -4267,6 +4262,11 @@ export namespace ResponseInputItem {
|
|
|
4267
4262
|
*/
|
|
4268
4263
|
id?: string | null;
|
|
4269
4264
|
|
|
4265
|
+
/**
|
|
4266
|
+
* The unique ID of the function tool call generated by the model.
|
|
4267
|
+
*/
|
|
4268
|
+
call_id?: string | null;
|
|
4269
|
+
|
|
4270
4270
|
/**
|
|
4271
4271
|
* The execution context that produced this tool call.
|
|
4272
4272
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** Version of the installed OpenAI SDK package. */
|
|
2
|
-
export const VERSION = '7.
|
|
2
|
+
export const VERSION = '7.7.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
package/version.d.ts
CHANGED
package/version.js
CHANGED
|
@@ -2,5 +2,5 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
/** Version of the installed OpenAI SDK package. */
|
|
5
|
-
exports.VERSION = '7.
|
|
5
|
+
exports.VERSION = '7.7.0'; // x-release-please-version
|
|
6
6
|
//# sourceMappingURL=version.js.map
|
package/version.mjs
CHANGED