openai 4.91.0 → 4.91.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 +13 -0
- package/package.json +1 -1
- package/resources/responses/responses.d.ts +1 -1
- package/resources/responses/responses.js +1 -1
- package/resources/responses/responses.mjs +1 -1
- package/src/resources/responses/responses.ts +1 -1
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 4.91.1 (2025-04-01)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.91.0...v4.91.1](https://github.com/openai/openai-node/compare/v4.91.0...v4.91.1)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
* **docs:** correct docstring on responses.stream ([1c8cd6a](https://github.com/openai/openai-node/commit/1c8cd6a638128b0ff5fac89d6c7db256f0b63a85))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
* Remove deprecated/unused remote spec feature ([ce3dfa8](https://github.com/openai/openai-node/commit/ce3dfa88bd4d395debccc0e6e1aac6d218b07cb8))
|
|
15
|
+
|
|
3
16
|
## 4.91.0 (2025-03-31)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v4.90.0...v4.91.0](https://github.com/openai/openai-node/compare/v4.90.0...v4.91.0)
|
package/package.json
CHANGED
|
@@ -54,7 +54,7 @@ export declare class Responses extends APIResource {
|
|
|
54
54
|
del(responseId: string, options?: Core.RequestOptions): Core.APIPromise<void>;
|
|
55
55
|
parse<Params extends ResponseCreateParamsWithTools, ParsedT = ExtractParsedContentFromParams<Params>>(body: Params, options?: Core.RequestOptions): Core.APIPromise<ParsedResponse<ParsedT>>;
|
|
56
56
|
/**
|
|
57
|
-
* Creates a
|
|
57
|
+
* Creates a model response stream
|
|
58
58
|
*/
|
|
59
59
|
stream<Params extends ResponseStreamParams, ParsedT = ExtractParsedContentFromParams<Params>>(body: Params, options?: Core.RequestOptions): ResponseStream<ParsedT>;
|
|
60
60
|
}
|
|
@@ -66,7 +66,7 @@ class Responses extends resource_1.APIResource {
|
|
|
66
66
|
._thenUnwrap((response) => (0, ResponsesParser_1.parseResponse)(response, body));
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
|
-
* Creates a
|
|
69
|
+
* Creates a model response stream
|
|
70
70
|
*/
|
|
71
71
|
stream(body, options) {
|
|
72
72
|
return ResponseStream_1.ResponseStream.createResponse(this._client, body, options);
|
|
@@ -40,7 +40,7 @@ export class Responses extends APIResource {
|
|
|
40
40
|
._thenUnwrap((response) => parseResponse(response, body));
|
|
41
41
|
}
|
|
42
42
|
/**
|
|
43
|
-
* Creates a
|
|
43
|
+
* Creates a model response stream
|
|
44
44
|
*/
|
|
45
45
|
stream(body, options) {
|
|
46
46
|
return ResponseStream.createResponse(this._client, body, options);
|
|
@@ -128,7 +128,7 @@ export class Responses extends APIResource {
|
|
|
128
128
|
}
|
|
129
129
|
|
|
130
130
|
/**
|
|
131
|
-
* Creates a
|
|
131
|
+
* Creates a model response stream
|
|
132
132
|
*/
|
|
133
133
|
stream<Params extends ResponseStreamParams, ParsedT = ExtractParsedContentFromParams<Params>>(
|
|
134
134
|
body: Params,
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.91.
|
|
1
|
+
export const VERSION = '4.91.1'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.91.
|
|
1
|
+
export declare const VERSION = "4.91.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.91.
|
|
1
|
+
export const VERSION = '4.91.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|