openai 7.3.0 → 7.4.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 +28 -0
- package/README.md +32 -0
- package/package.json +2 -3
- package/resources/beta/responses/responses.d.mts +20 -4
- package/resources/beta/responses/responses.d.mts.map +1 -1
- package/resources/beta/responses/responses.d.ts +20 -4
- package/resources/beta/responses/responses.d.ts.map +1 -1
- package/resources/beta/responses/responses.js.map +1 -1
- package/resources/beta/responses/responses.mjs.map +1 -1
- package/resources/responses/responses.d.mts +17 -1
- package/resources/responses/responses.d.mts.map +1 -1
- package/resources/responses/responses.d.ts +17 -1
- package/resources/responses/responses.d.ts.map +1 -1
- package/resources/responses/responses.js.map +1 -1
- package/resources/responses/responses.mjs.map +1 -1
- package/resources/shared.d.mts +1 -1
- package/resources/shared.d.mts.map +1 -1
- package/resources/shared.d.ts +1 -1
- package/resources/shared.d.ts.map +1 -1
- package/src/resources/beta/responses/responses.ts +24 -0
- package/src/resources/responses/responses.ts +21 -0
- package/src/resources/shared.ts +1 -0
- 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
|
@@ -3471,6 +3471,16 @@ export interface ResponseFunctionToolCallOutputItem {
|
|
|
3471
3471
|
* The identifier of the actor that created the item.
|
|
3472
3472
|
*/
|
|
3473
3473
|
created_by?: string;
|
|
3474
|
+
|
|
3475
|
+
/**
|
|
3476
|
+
* The name of the tool that produced the output.
|
|
3477
|
+
*/
|
|
3478
|
+
name?: string;
|
|
3479
|
+
|
|
3480
|
+
/**
|
|
3481
|
+
* The namespace of the tool that produced the output.
|
|
3482
|
+
*/
|
|
3483
|
+
namespace?: string;
|
|
3474
3484
|
}
|
|
3475
3485
|
|
|
3476
3486
|
export namespace ResponseFunctionToolCallOutputItem {
|
|
@@ -4207,6 +4217,16 @@ export namespace ResponseInputItem {
|
|
|
4207
4217
|
*/
|
|
4208
4218
|
caller?: FunctionCallOutput.Direct | FunctionCallOutput.Program | null;
|
|
4209
4219
|
|
|
4220
|
+
/**
|
|
4221
|
+
* The name of the tool that produced the output.
|
|
4222
|
+
*/
|
|
4223
|
+
name?: string | null;
|
|
4224
|
+
|
|
4225
|
+
/**
|
|
4226
|
+
* The namespace of the tool that produced the output.
|
|
4227
|
+
*/
|
|
4228
|
+
namespace?: string | null;
|
|
4229
|
+
|
|
4210
4230
|
/**
|
|
4211
4231
|
* The status of the item. One of `in_progress`, `completed`, or `incomplete`.
|
|
4212
4232
|
* Populated when items are returned via API.
|
|
@@ -9096,6 +9116,7 @@ export interface ResponseCompactParams {
|
|
|
9096
9116
|
| 'gpt-5.6-sol'
|
|
9097
9117
|
| 'gpt-5.6-terra'
|
|
9098
9118
|
| 'gpt-5.6-luna'
|
|
9119
|
+
| 'gpt-5.5'
|
|
9099
9120
|
| 'gpt-5.4'
|
|
9100
9121
|
| 'gpt-5.4-mini'
|
|
9101
9122
|
| 'gpt-5.4-nano'
|
package/src/resources/shared.ts
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '7.
|
|
1
|
+
export const VERSION = '7.4.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "7.
|
|
1
|
+
export declare const VERSION = "7.4.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "7.
|
|
1
|
+
export declare const VERSION = "7.4.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '7.
|
|
1
|
+
export const VERSION = '7.4.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|