openai 4.76.2 → 4.76.3
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/README.md +3 -3
- package/package.json +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.76.3 (2024-12-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.76.2...v4.76.3](https://github.com/openai/openai-node/compare/v4.76.2...v4.76.3)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **internal:** better ecosystem test debugging ([86fc0a8](https://github.com/openai/openai-node/commit/86fc0a81ede2780d3fcebaabff3d9fa9a36cc9c0))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Documentation
|
|
13
|
+
|
|
14
|
+
* **README:** fix helpers section links ([#1224](https://github.com/openai/openai-node/issues/1224)) ([efbe30a](https://github.com/openai/openai-node/commit/efbe30a156cec1836d3db28f663066b33be57ba2))
|
|
15
|
+
|
|
3
16
|
## 4.76.2 (2024-12-12)
|
|
4
17
|
|
|
5
18
|
Full Changelog: [v4.76.1...v4.76.2](https://github.com/openai/openai-node/compare/v4.76.1...v4.76.2)
|
package/README.md
CHANGED
|
@@ -200,7 +200,7 @@ main();
|
|
|
200
200
|
```
|
|
201
201
|
|
|
202
202
|
Streaming with `openai.beta.chat.completions.stream({…})` exposes
|
|
203
|
-
[various helpers for your convenience](helpers.md#events) including event handlers and promises.
|
|
203
|
+
[various helpers for your convenience](helpers.md#chat-events) including event handlers and promises.
|
|
204
204
|
|
|
205
205
|
Alternatively, you can use `openai.chat.completions.create({ stream: true, … })`
|
|
206
206
|
which only returns an async iterable of the chunks in the stream and thus uses less memory
|
|
@@ -285,12 +285,12 @@ main();
|
|
|
285
285
|
// Final content: "It's looking cold and rainy - you might want to wear a jacket!"
|
|
286
286
|
```
|
|
287
287
|
|
|
288
|
-
Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#events).
|
|
288
|
+
Like with `.stream()`, we provide a variety of [helpers and events](helpers.md#chat-events).
|
|
289
289
|
|
|
290
290
|
Note that `runFunctions` was previously available as well, but has been deprecated in favor of `runTools`.
|
|
291
291
|
|
|
292
292
|
Read more about various examples such as with integrating with [zod](helpers.md#integrate-with-zod),
|
|
293
|
-
[next.js](helpers.md#integrate-
|
|
293
|
+
[next.js](helpers.md#integrate-with-nextjs), and [proxying a stream to the browser](helpers.md#proxy-streaming-to-a-browser).
|
|
294
294
|
|
|
295
295
|
## File uploads
|
|
296
296
|
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '4.76.
|
|
1
|
+
export const VERSION = '4.76.3'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.76.
|
|
1
|
+
export declare const VERSION = "4.76.3";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '4.76.
|
|
1
|
+
export const VERSION = '4.76.3'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|