modelmix 1.0.2
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/.gitattributes +2 -0
- package/README.md +147 -0
- package/demo/default.env +3 -0
- package/demo/demo.mjs +49 -0
- package/demo/node_modules/.package-lock.json +272 -0
- package/demo/node_modules/@anthropic-ai/sdk/CHANGELOG.md +859 -0
- package/demo/node_modules/@anthropic-ai/sdk/LICENSE +8 -0
- package/demo/node_modules/@anthropic-ai/sdk/README.md +424 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/MultipartBody.d.ts +9 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/MultipartBody.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/MultipartBody.js +16 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/MultipartBody.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/MultipartBody.mjs +12 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/MultipartBody.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/README.md +46 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-bun.d.ts +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-bun.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-bun.js +21 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-bun.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-bun.mjs +2 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-bun.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-node.d.ts +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-node.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-node.js +21 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-node.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-node.mjs +2 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime-node.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime.d.ts +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime.js +21 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime.mjs +2 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/runtime.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types-node.d.ts +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types-node.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types-node.js +21 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types-node.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types-node.mjs +2 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types-node.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types.d.ts +101 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types.js +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/auto/types.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/bun-runtime.d.ts +6 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/bun-runtime.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/bun-runtime.js +14 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/bun-runtime.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/bun-runtime.mjs +10 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/bun-runtime.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/index.d.ts +81 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/index.js +13 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/index.mjs +7 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/manual-types.d.ts +12 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/manual-types.js +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/manual-types.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-runtime.d.ts +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-runtime.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-runtime.js +90 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-runtime.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-runtime.mjs +56 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-runtime.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-types.d.ts +42 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-types.js +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/node-types.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/registry.d.ts +37 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/registry.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/registry.js +41 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/registry.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/registry.mjs +37 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/registry.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-runtime.d.ts +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-runtime.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-runtime.js +78 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-runtime.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-runtime.mjs +71 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-runtime.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-types.d.ts +83 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-types.js +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/_shims/web-types.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/core.d.ts +239 -0
- package/demo/node_modules/@anthropic-ai/sdk/core.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/core.js +879 -0
- package/demo/node_modules/@anthropic-ai/sdk/core.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/core.mjs +848 -0
- package/demo/node_modules/@anthropic-ai/sdk/core.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/error.d.ts +53 -0
- package/demo/node_modules/@anthropic-ai/sdk/error.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/error.js +143 -0
- package/demo/node_modules/@anthropic-ai/sdk/error.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/error.mjs +127 -0
- package/demo/node_modules/@anthropic-ai/sdk/error.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/index.d.mts +147 -0
- package/demo/node_modules/@anthropic-ai/sdk/index.d.ts +147 -0
- package/demo/node_modules/@anthropic-ai/sdk/index.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/index.js +149 -0
- package/demo/node_modules/@anthropic-ai/sdk/index.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/index.mjs +121 -0
- package/demo/node_modules/@anthropic-ai/sdk/index.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.ts +94 -0
- package/demo/node_modules/@anthropic-ai/sdk/lib/MessageStream.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/lib/MessageStream.js +436 -0
- package/demo/node_modules/@anthropic-ai/sdk/lib/MessageStream.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/lib/MessageStream.mjs +432 -0
- package/demo/node_modules/@anthropic-ai/sdk/lib/MessageStream.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/package.json +104 -0
- package/demo/node_modules/@anthropic-ai/sdk/resource.d.ts +6 -0
- package/demo/node_modules/@anthropic-ai/sdk/resource.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resource.js +11 -0
- package/demo/node_modules/@anthropic-ai/sdk/resource.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resource.mjs +7 -0
- package/demo/node_modules/@anthropic-ai/sdk/resource.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.ts +9 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/beta.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/beta.js +40 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/beta.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/beta.mjs +13 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/beta.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/index.d.ts +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/index.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/index.js +9 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/index.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/index.mjs +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/index.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/index.d.ts +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/index.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/index.js +9 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/index.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/index.mjs +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/index.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/messages.d.ts +462 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/messages.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/messages.js +20 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/messages.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/messages.mjs +16 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/messages.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/tools.d.ts +19 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/tools.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/tools.js +40 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/tools.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/tools.mjs +13 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/beta/tools/tools.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/completions.d.ts +184 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/completions.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/completions.js +19 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/completions.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/completions.mjs +15 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/completions.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/index.d.ts +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/index.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/index.js +11 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/index.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/index.mjs +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/index.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/messages.d.ts +619 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/messages.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/messages.js +28 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/messages.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/messages.mjs +23 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/messages.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/top-level.d.ts +2 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/top-level.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/top-level.js +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/top-level.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/top-level.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/resources/top-level.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/node.d.ts +29 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/node.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/node.js +31 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/node.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/node.mjs +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/node.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/web.d.ts +26 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/web.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/web.js +31 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/web.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/web.mjs +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/shims/web.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/MultipartBody.ts +9 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/README.md +46 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/auto/runtime-bun.ts +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/auto/runtime-node.ts +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/auto/runtime.ts +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/auto/types-node.ts +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/auto/types.d.ts +101 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/auto/types.js +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/auto/types.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/bun-runtime.ts +14 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/index.d.ts +81 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/index.js +13 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/index.mjs +7 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/manual-types.d.ts +12 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/manual-types.js +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/manual-types.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/node-runtime.ts +83 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/node-types.d.ts +42 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/node-types.js +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/node-types.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/registry.ts +67 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/web-runtime.ts +103 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/web-types.d.ts +83 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/web-types.js +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/_shims/web-types.mjs +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/core.ts +1162 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/error.ts +146 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/index.ts +264 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/lib/.keep +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/lib/MessageStream.ts +535 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resource.ts +11 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/beta/beta.ts +12 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/beta/index.ts +4 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/beta/tools/index.ts +16 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/beta/tools/messages.ts +531 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/beta/tools/tools.ts +22 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/completions.ts +223 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/index.ts +33 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/messages.ts +729 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/resources/top-level.ts +3 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/shims/node.ts +50 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/shims/web.ts +50 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/streaming.ts +509 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/tsconfig.json +11 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/uploads.ts +248 -0
- package/demo/node_modules/@anthropic-ai/sdk/src/version.ts +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/streaming.d.ts +41 -0
- package/demo/node_modules/@anthropic-ai/sdk/streaming.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/streaming.js +431 -0
- package/demo/node_modules/@anthropic-ai/sdk/streaming.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/streaming.mjs +424 -0
- package/demo/node_modules/@anthropic-ai/sdk/streaming.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/uploads.d.ts +75 -0
- package/demo/node_modules/@anthropic-ai/sdk/uploads.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/uploads.js +165 -0
- package/demo/node_modules/@anthropic-ai/sdk/uploads.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/uploads.mjs +152 -0
- package/demo/node_modules/@anthropic-ai/sdk/uploads.mjs.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/version.d.ts +2 -0
- package/demo/node_modules/@anthropic-ai/sdk/version.d.ts.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/version.js +5 -0
- package/demo/node_modules/@anthropic-ai/sdk/version.js.map +1 -0
- package/demo/node_modules/@anthropic-ai/sdk/version.mjs +2 -0
- package/demo/node_modules/@anthropic-ai/sdk/version.mjs.map +1 -0
- package/demo/node_modules/@types/node/LICENSE +21 -0
- package/demo/node_modules/@types/node/README.md +15 -0
- package/demo/node_modules/@types/node/assert/strict.d.ts +8 -0
- package/demo/node_modules/@types/node/assert.d.ts +985 -0
- package/demo/node_modules/@types/node/async_hooks.d.ts +522 -0
- package/demo/node_modules/@types/node/buffer.d.ts +2353 -0
- package/demo/node_modules/@types/node/child_process.d.ts +1544 -0
- package/demo/node_modules/@types/node/cluster.d.ts +578 -0
- package/demo/node_modules/@types/node/console.d.ts +452 -0
- package/demo/node_modules/@types/node/constants.d.ts +19 -0
- package/demo/node_modules/@types/node/crypto.d.ts +4457 -0
- package/demo/node_modules/@types/node/dgram.d.ts +596 -0
- package/demo/node_modules/@types/node/diagnostics_channel.d.ts +546 -0
- package/demo/node_modules/@types/node/dns/promises.d.ts +473 -0
- package/demo/node_modules/@types/node/dns.d.ts +853 -0
- package/demo/node_modules/@types/node/dom-events.d.ts +124 -0
- package/demo/node_modules/@types/node/domain.d.ts +170 -0
- package/demo/node_modules/@types/node/events.d.ts +819 -0
- package/demo/node_modules/@types/node/fs/promises.d.ts +1205 -0
- package/demo/node_modules/@types/node/fs.d.ts +4237 -0
- package/demo/node_modules/@types/node/globals.d.ts +377 -0
- package/demo/node_modules/@types/node/globals.global.d.ts +1 -0
- package/demo/node_modules/@types/node/http.d.ts +1803 -0
- package/demo/node_modules/@types/node/http2.d.ts +2392 -0
- package/demo/node_modules/@types/node/https.d.ts +544 -0
- package/demo/node_modules/@types/node/index.d.ts +88 -0
- package/demo/node_modules/@types/node/inspector.d.ts +2738 -0
- package/demo/node_modules/@types/node/module.d.ts +298 -0
- package/demo/node_modules/@types/node/net.d.ts +918 -0
- package/demo/node_modules/@types/node/os.d.ts +473 -0
- package/demo/node_modules/@types/node/package.json +222 -0
- package/demo/node_modules/@types/node/path.d.ts +191 -0
- package/demo/node_modules/@types/node/perf_hooks.d.ts +626 -0
- package/demo/node_modules/@types/node/process.d.ts +1548 -0
- package/demo/node_modules/@types/node/punycode.d.ts +117 -0
- package/demo/node_modules/@types/node/querystring.d.ts +141 -0
- package/demo/node_modules/@types/node/readline/promises.d.ts +143 -0
- package/demo/node_modules/@types/node/readline.d.ts +666 -0
- package/demo/node_modules/@types/node/repl.d.ts +430 -0
- package/demo/node_modules/@types/node/stream/consumers.d.ts +12 -0
- package/demo/node_modules/@types/node/stream/promises.d.ts +83 -0
- package/demo/node_modules/@types/node/stream/web.d.ts +352 -0
- package/demo/node_modules/@types/node/stream.d.ts +1731 -0
- package/demo/node_modules/@types/node/string_decoder.d.ts +67 -0
- package/demo/node_modules/@types/node/test.d.ts +1113 -0
- package/demo/node_modules/@types/node/timers/promises.d.ts +93 -0
- package/demo/node_modules/@types/node/timers.d.ts +126 -0
- package/demo/node_modules/@types/node/tls.d.ts +1203 -0
- package/demo/node_modules/@types/node/trace_events.d.ts +171 -0
- package/demo/node_modules/@types/node/tty.d.ts +206 -0
- package/demo/node_modules/@types/node/url.d.ts +954 -0
- package/demo/node_modules/@types/node/util.d.ts +2075 -0
- package/demo/node_modules/@types/node/v8.d.ts +753 -0
- package/demo/node_modules/@types/node/vm.d.ts +667 -0
- package/demo/node_modules/@types/node/wasi.d.ts +160 -0
- package/demo/node_modules/@types/node/worker_threads.d.ts +692 -0
- package/demo/node_modules/@types/node/zlib.d.ts +517 -0
- package/demo/node_modules/@types/node-fetch/LICENSE +21 -0
- package/demo/node_modules/@types/node-fetch/README.md +15 -0
- package/demo/node_modules/@types/node-fetch/externals.d.ts +32 -0
- package/demo/node_modules/@types/node-fetch/index.d.ts +238 -0
- package/demo/node_modules/@types/node-fetch/package.json +83 -0
- package/demo/node_modules/abort-controller/LICENSE +21 -0
- package/demo/node_modules/abort-controller/README.md +98 -0
- package/demo/node_modules/abort-controller/browser.js +13 -0
- package/demo/node_modules/abort-controller/browser.mjs +11 -0
- package/demo/node_modules/abort-controller/package.json +97 -0
- package/demo/node_modules/abort-controller/polyfill.js +21 -0
- package/demo/node_modules/abort-controller/polyfill.mjs +19 -0
- package/demo/node_modules/agentkeepalive/History.md +268 -0
- package/demo/node_modules/agentkeepalive/LICENSE +23 -0
- package/demo/node_modules/agentkeepalive/README.md +256 -0
- package/demo/node_modules/agentkeepalive/browser.js +5 -0
- package/demo/node_modules/agentkeepalive/index.d.ts +65 -0
- package/demo/node_modules/agentkeepalive/index.js +5 -0
- package/demo/node_modules/agentkeepalive/lib/agent.js +402 -0
- package/demo/node_modules/agentkeepalive/lib/constants.js +14 -0
- package/demo/node_modules/agentkeepalive/lib/https_agent.js +51 -0
- package/demo/node_modules/agentkeepalive/package.json +56 -0
- package/demo/node_modules/asynckit/LICENSE +21 -0
- package/demo/node_modules/asynckit/README.md +233 -0
- package/demo/node_modules/asynckit/bench.js +76 -0
- package/demo/node_modules/asynckit/index.js +6 -0
- package/demo/node_modules/asynckit/lib/abort.js +29 -0
- package/demo/node_modules/asynckit/lib/async.js +34 -0
- package/demo/node_modules/asynckit/lib/defer.js +26 -0
- package/demo/node_modules/asynckit/lib/iterate.js +75 -0
- package/demo/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/demo/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/demo/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/demo/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/demo/node_modules/asynckit/lib/state.js +37 -0
- package/demo/node_modules/asynckit/lib/streamify.js +141 -0
- package/demo/node_modules/asynckit/lib/terminator.js +29 -0
- package/demo/node_modules/asynckit/package.json +63 -0
- package/demo/node_modules/asynckit/parallel.js +43 -0
- package/demo/node_modules/asynckit/serial.js +17 -0
- package/demo/node_modules/asynckit/serialOrdered.js +75 -0
- package/demo/node_modules/asynckit/stream.js +21 -0
- package/demo/node_modules/combined-stream/License +19 -0
- package/demo/node_modules/combined-stream/Readme.md +138 -0
- package/demo/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/demo/node_modules/combined-stream/package.json +25 -0
- package/demo/node_modules/combined-stream/yarn.lock +17 -0
- package/demo/node_modules/delayed-stream/License +19 -0
- package/demo/node_modules/delayed-stream/Makefile +7 -0
- package/demo/node_modules/delayed-stream/Readme.md +141 -0
- package/demo/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/demo/node_modules/delayed-stream/package.json +27 -0
- package/demo/node_modules/dotenv/CHANGELOG.md +475 -0
- package/demo/node_modules/dotenv/LICENSE +23 -0
- package/demo/node_modules/dotenv/README-es.md +448 -0
- package/demo/node_modules/dotenv/README.md +728 -0
- package/demo/node_modules/dotenv/config.d.ts +1 -0
- package/demo/node_modules/dotenv/config.js +9 -0
- package/demo/node_modules/dotenv/lib/cli-options.js +11 -0
- package/demo/node_modules/dotenv/lib/env-options.js +24 -0
- package/demo/node_modules/dotenv/lib/main.d.ts +153 -0
- package/demo/node_modules/dotenv/lib/main.js +361 -0
- package/demo/node_modules/dotenv/package.json +65 -0
- package/demo/node_modules/event-target-shim/LICENSE +22 -0
- package/demo/node_modules/event-target-shim/README.md +293 -0
- package/demo/node_modules/event-target-shim/index.d.ts +399 -0
- package/demo/node_modules/event-target-shim/package.json +82 -0
- package/demo/node_modules/form-data/License +19 -0
- package/demo/node_modules/form-data/README.md.bak +358 -0
- package/demo/node_modules/form-data/Readme.md +358 -0
- package/demo/node_modules/form-data/index.d.ts +62 -0
- package/demo/node_modules/form-data/lib/browser.js +2 -0
- package/demo/node_modules/form-data/lib/form_data.js +501 -0
- package/demo/node_modules/form-data/lib/populate.js +10 -0
- package/demo/node_modules/form-data/package.json +68 -0
- package/demo/node_modules/form-data-encoder/@type/FileLike.d.ts +23 -0
- package/demo/node_modules/form-data-encoder/@type/FormDataEncoder.d.ts +160 -0
- package/demo/node_modules/form-data-encoder/@type/FormDataLike.d.ts +40 -0
- package/demo/node_modules/form-data-encoder/@type/index.d.ts +5 -0
- package/demo/node_modules/form-data-encoder/@type/util/createBoundary.d.ts +13 -0
- package/demo/node_modules/form-data-encoder/@type/util/escapeName.d.ts +11 -0
- package/demo/node_modules/form-data-encoder/@type/util/isFileLike.d.ts +28 -0
- package/demo/node_modules/form-data-encoder/@type/util/isFormData.d.ts +15 -0
- package/demo/node_modules/form-data-encoder/@type/util/isFunction.d.ts +7 -0
- package/demo/node_modules/form-data-encoder/@type/util/isPlainObject.d.ts +2 -0
- package/demo/node_modules/form-data-encoder/@type/util/normalizeValue.d.ts +11 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/FileLike.js +2 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/FormDataEncoder.js +126 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/FormDataLike.js +2 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/index.js +17 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/package.json +3 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/util/createBoundary.js +12 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/util/escapeName.js +7 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/util/isFileLike.js +16 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/util/isFormData.js +16 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/util/isFunction.js +4 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/util/isPlainObject.js +15 -0
- package/demo/node_modules/form-data-encoder/lib/cjs/util/normalizeValue.js +11 -0
- package/demo/node_modules/form-data-encoder/lib/esm/FileLike.js +1 -0
- package/demo/node_modules/form-data-encoder/lib/esm/FormDataEncoder.js +119 -0
- package/demo/node_modules/form-data-encoder/lib/esm/FormDataLike.js +1 -0
- package/demo/node_modules/form-data-encoder/lib/esm/index.js +5 -0
- package/demo/node_modules/form-data-encoder/lib/esm/package.json +3 -0
- package/demo/node_modules/form-data-encoder/lib/esm/util/createBoundary.js +10 -0
- package/demo/node_modules/form-data-encoder/lib/esm/util/escapeName.js +5 -0
- package/demo/node_modules/form-data-encoder/lib/esm/util/isFileLike.js +9 -0
- package/demo/node_modules/form-data-encoder/lib/esm/util/isFormData.js +9 -0
- package/demo/node_modules/form-data-encoder/lib/esm/util/isFunction.js +2 -0
- package/demo/node_modules/form-data-encoder/lib/esm/util/isPlainObject.js +13 -0
- package/demo/node_modules/form-data-encoder/lib/esm/util/normalizeValue.js +9 -0
- package/demo/node_modules/form-data-encoder/license +21 -0
- package/demo/node_modules/form-data-encoder/package.json +63 -0
- package/demo/node_modules/form-data-encoder/readme.md +366 -0
- package/demo/node_modules/formdata-node/@type/Blob.d.ts +66 -0
- package/demo/node_modules/formdata-node/@type/BlobPart.d.ts +2 -0
- package/demo/node_modules/formdata-node/@type/File.d.ts +53 -0
- package/demo/node_modules/formdata-node/@type/FormData.d.ts +105 -0
- package/demo/node_modules/formdata-node/@type/blobHelpers.d.ts +9 -0
- package/demo/node_modules/formdata-node/@type/browser.d.ts +10 -0
- package/demo/node_modules/formdata-node/@type/deprecateConstructorEntries.d.ts +1 -0
- package/demo/node_modules/formdata-node/@type/fileFromPath.d.ts +55 -0
- package/demo/node_modules/formdata-node/@type/index.d.ts +3 -0
- package/demo/node_modules/formdata-node/@type/isBlob.d.ts +2 -0
- package/demo/node_modules/formdata-node/@type/isFile.d.ts +7 -0
- package/demo/node_modules/formdata-node/@type/isFunction.d.ts +1 -0
- package/demo/node_modules/formdata-node/@type/isPlainObject.d.ts +2 -0
- package/demo/node_modules/formdata-node/lib/cjs/Blob.js +122 -0
- package/demo/node_modules/formdata-node/lib/cjs/BlobPart.js +2 -0
- package/demo/node_modules/formdata-node/lib/cjs/File.js +52 -0
- package/demo/node_modules/formdata-node/lib/cjs/FormData.js +148 -0
- package/demo/node_modules/formdata-node/lib/cjs/blobHelpers.js +80 -0
- package/demo/node_modules/formdata-node/lib/cjs/browser.js +13 -0
- package/demo/node_modules/formdata-node/lib/cjs/deprecateConstructorEntries.js +6 -0
- package/demo/node_modules/formdata-node/lib/cjs/fileFromPath.js +97 -0
- package/demo/node_modules/formdata-node/lib/cjs/index.js +15 -0
- package/demo/node_modules/formdata-node/lib/cjs/isBlob.js +6 -0
- package/demo/node_modules/formdata-node/lib/cjs/isFile.js +6 -0
- package/demo/node_modules/formdata-node/lib/cjs/isFunction.js +5 -0
- package/demo/node_modules/formdata-node/lib/cjs/isPlainObject.js +15 -0
- package/demo/node_modules/formdata-node/lib/cjs/package.json +3 -0
- package/demo/node_modules/formdata-node/lib/esm/Blob.js +118 -0
- package/demo/node_modules/formdata-node/lib/esm/BlobPart.js +1 -0
- package/demo/node_modules/formdata-node/lib/esm/File.js +48 -0
- package/demo/node_modules/formdata-node/lib/esm/FormData.js +144 -0
- package/demo/node_modules/formdata-node/lib/esm/blobHelpers.js +75 -0
- package/demo/node_modules/formdata-node/lib/esm/browser.js +10 -0
- package/demo/node_modules/formdata-node/lib/esm/deprecateConstructorEntries.js +3 -0
- package/demo/node_modules/formdata-node/lib/esm/fileFromPath.js +79 -0
- package/demo/node_modules/formdata-node/lib/esm/index.js +3 -0
- package/demo/node_modules/formdata-node/lib/esm/isBlob.js +2 -0
- package/demo/node_modules/formdata-node/lib/esm/isFile.js +2 -0
- package/demo/node_modules/formdata-node/lib/esm/isFunction.js +1 -0
- package/demo/node_modules/formdata-node/lib/esm/isPlainObject.js +13 -0
- package/demo/node_modules/formdata-node/lib/esm/package.json +3 -0
- package/demo/node_modules/formdata-node/lib/node-domexception.d.ts +5 -0
- package/demo/node_modules/formdata-node/license +21 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/LICENSE +22 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/README.md +135 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/es5/package.json +6 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/package.json +101 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/polyfill/es5/package.json +5 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/polyfill/package.json +5 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/types/polyfill.d.ts +62 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/types/ponyfill.d.ts +775 -0
- package/demo/node_modules/formdata-node/node_modules/web-streams-polyfill/types/tsdoc-metadata.json +11 -0
- package/demo/node_modules/formdata-node/package.json +94 -0
- package/demo/node_modules/formdata-node/readme.md +444 -0
- package/demo/node_modules/humanize-ms/History.md +25 -0
- package/demo/node_modules/humanize-ms/LICENSE +17 -0
- package/demo/node_modules/humanize-ms/README.md +40 -0
- package/demo/node_modules/humanize-ms/index.js +24 -0
- package/demo/node_modules/humanize-ms/package.json +37 -0
- package/demo/node_modules/mime-db/HISTORY.md +507 -0
- package/demo/node_modules/mime-db/LICENSE +23 -0
- package/demo/node_modules/mime-db/README.md +100 -0
- package/demo/node_modules/mime-db/db.json +8519 -0
- package/demo/node_modules/mime-db/index.js +12 -0
- package/demo/node_modules/mime-db/package.json +60 -0
- package/demo/node_modules/mime-types/HISTORY.md +397 -0
- package/demo/node_modules/mime-types/LICENSE +23 -0
- package/demo/node_modules/mime-types/README.md +113 -0
- package/demo/node_modules/mime-types/index.js +188 -0
- package/demo/node_modules/mime-types/package.json +44 -0
- package/demo/node_modules/ms/index.js +162 -0
- package/demo/node_modules/ms/license.md +21 -0
- package/demo/node_modules/ms/package.json +38 -0
- package/demo/node_modules/ms/readme.md +59 -0
- package/demo/node_modules/node-domexception/.history/README_20210527203617.md +2 -0
- package/demo/node_modules/node-domexception/.history/README_20210527212714.md +41 -0
- package/demo/node_modules/node-domexception/.history/README_20210527213345.md +36 -0
- package/demo/node_modules/node-domexception/.history/README_20210527213411.md +36 -0
- package/demo/node_modules/node-domexception/.history/README_20210527213803.md +36 -0
- package/demo/node_modules/node-domexception/.history/README_20210527214323.md +38 -0
- package/demo/node_modules/node-domexception/.history/README_20210527214408.md +38 -0
- package/demo/node_modules/node-domexception/.history/index_20210527203842.js +0 -0
- package/demo/node_modules/node-domexception/.history/index_20210527203947.js +8 -0
- package/demo/node_modules/node-domexception/.history/index_20210527204259.js +9 -0
- package/demo/node_modules/node-domexception/.history/index_20210527204418.js +9 -0
- package/demo/node_modules/node-domexception/.history/index_20210527204756.js +11 -0
- package/demo/node_modules/node-domexception/.history/index_20210527204833.js +11 -0
- package/demo/node_modules/node-domexception/.history/index_20210527211208.js +15 -0
- package/demo/node_modules/node-domexception/.history/index_20210527211248.js +15 -0
- package/demo/node_modules/node-domexception/.history/index_20210527212722.js +23 -0
- package/demo/node_modules/node-domexception/.history/index_20210527212731.js +23 -0
- package/demo/node_modules/node-domexception/.history/index_20210527212746.js +15 -0
- package/demo/node_modules/node-domexception/.history/index_20210527212900.js +16 -0
- package/demo/node_modules/node-domexception/.history/index_20210527213022.js +16 -0
- package/demo/node_modules/node-domexception/.history/index_20210527213822.js +16 -0
- package/demo/node_modules/node-domexception/.history/index_20210527213843.js +17 -0
- package/demo/node_modules/node-domexception/.history/index_20210527213852.js +17 -0
- package/demo/node_modules/node-domexception/.history/index_20210527213910.js +16 -0
- package/demo/node_modules/node-domexception/.history/index_20210527214034.js +16 -0
- package/demo/node_modules/node-domexception/.history/index_20210527214643.js +41 -0
- package/demo/node_modules/node-domexception/.history/index_20210527214654.js +41 -0
- package/demo/node_modules/node-domexception/.history/index_20210527214700.js +16 -0
- package/demo/node_modules/node-domexception/.history/package_20210527203733.json +19 -0
- package/demo/node_modules/node-domexception/.history/package_20210527203825.json +16 -0
- package/demo/node_modules/node-domexception/.history/package_20210527204621.json +19 -0
- package/demo/node_modules/node-domexception/.history/package_20210527204913.json +25 -0
- package/demo/node_modules/node-domexception/.history/package_20210527204925.json +25 -0
- package/demo/node_modules/node-domexception/.history/package_20210527205145.json +29 -0
- package/demo/node_modules/node-domexception/.history/package_20210527205156.json +29 -0
- package/demo/node_modules/node-domexception/.history/test_20210527205603.js +0 -0
- package/demo/node_modules/node-domexception/.history/test_20210527205957.js +3 -0
- package/demo/node_modules/node-domexception/.history/test_20210527210021.js +3 -0
- package/demo/node_modules/node-domexception/LICENSE +21 -0
- package/demo/node_modules/node-domexception/README.md +46 -0
- package/demo/node_modules/node-domexception/index.js +16 -0
- package/demo/node_modules/node-domexception/package.json +29 -0
- package/demo/node_modules/node-fetch/LICENSE.md +22 -0
- package/demo/node_modules/node-fetch/README.md +634 -0
- package/demo/node_modules/node-fetch/browser.js +25 -0
- package/demo/node_modules/node-fetch/lib/index.es.js +1777 -0
- package/demo/node_modules/node-fetch/lib/index.js +1787 -0
- package/demo/node_modules/node-fetch/lib/index.mjs +1775 -0
- package/demo/node_modules/node-fetch/package.json +89 -0
- package/demo/node_modules/openai/CHANGELOG.md +1176 -0
- package/demo/node_modules/openai/LICENSE +201 -0
- package/demo/node_modules/openai/README.md +616 -0
- package/demo/node_modules/openai/_shims/MultipartBody.d.ts +9 -0
- package/demo/node_modules/openai/_shims/MultipartBody.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/MultipartBody.js +16 -0
- package/demo/node_modules/openai/_shims/MultipartBody.js.map +1 -0
- package/demo/node_modules/openai/_shims/MultipartBody.mjs +12 -0
- package/demo/node_modules/openai/_shims/MultipartBody.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/README.md +46 -0
- package/demo/node_modules/openai/_shims/auto/runtime-bun.d.ts +5 -0
- package/demo/node_modules/openai/_shims/auto/runtime-bun.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/auto/runtime-bun.js +21 -0
- package/demo/node_modules/openai/_shims/auto/runtime-bun.js.map +1 -0
- package/demo/node_modules/openai/_shims/auto/runtime-bun.mjs +2 -0
- package/demo/node_modules/openai/_shims/auto/runtime-bun.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/auto/runtime-node.d.ts +5 -0
- package/demo/node_modules/openai/_shims/auto/runtime-node.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/auto/runtime-node.js +21 -0
- package/demo/node_modules/openai/_shims/auto/runtime-node.js.map +1 -0
- package/demo/node_modules/openai/_shims/auto/runtime-node.mjs +2 -0
- package/demo/node_modules/openai/_shims/auto/runtime-node.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/auto/runtime.d.ts +5 -0
- package/demo/node_modules/openai/_shims/auto/runtime.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/auto/runtime.js +21 -0
- package/demo/node_modules/openai/_shims/auto/runtime.js.map +1 -0
- package/demo/node_modules/openai/_shims/auto/runtime.mjs +2 -0
- package/demo/node_modules/openai/_shims/auto/runtime.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/auto/types-node.d.ts +5 -0
- package/demo/node_modules/openai/_shims/auto/types-node.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/auto/types-node.js +21 -0
- package/demo/node_modules/openai/_shims/auto/types-node.js.map +1 -0
- package/demo/node_modules/openai/_shims/auto/types-node.mjs +2 -0
- package/demo/node_modules/openai/_shims/auto/types-node.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/auto/types.d.ts +101 -0
- package/demo/node_modules/openai/_shims/auto/types.js +3 -0
- package/demo/node_modules/openai/_shims/auto/types.mjs +3 -0
- package/demo/node_modules/openai/_shims/bun-runtime.d.ts +6 -0
- package/demo/node_modules/openai/_shims/bun-runtime.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/bun-runtime.js +14 -0
- package/demo/node_modules/openai/_shims/bun-runtime.js.map +1 -0
- package/demo/node_modules/openai/_shims/bun-runtime.mjs +10 -0
- package/demo/node_modules/openai/_shims/bun-runtime.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/index.d.ts +81 -0
- package/demo/node_modules/openai/_shims/index.js +13 -0
- package/demo/node_modules/openai/_shims/index.mjs +7 -0
- package/demo/node_modules/openai/_shims/manual-types.d.ts +12 -0
- package/demo/node_modules/openai/_shims/manual-types.js +3 -0
- package/demo/node_modules/openai/_shims/manual-types.mjs +3 -0
- package/demo/node_modules/openai/_shims/node-runtime.d.ts +3 -0
- package/demo/node_modules/openai/_shims/node-runtime.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/node-runtime.js +90 -0
- package/demo/node_modules/openai/_shims/node-runtime.js.map +1 -0
- package/demo/node_modules/openai/_shims/node-runtime.mjs +56 -0
- package/demo/node_modules/openai/_shims/node-runtime.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/node-types.d.ts +42 -0
- package/demo/node_modules/openai/_shims/node-types.js +3 -0
- package/demo/node_modules/openai/_shims/node-types.mjs +3 -0
- package/demo/node_modules/openai/_shims/registry.d.ts +37 -0
- package/demo/node_modules/openai/_shims/registry.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/registry.js +41 -0
- package/demo/node_modules/openai/_shims/registry.js.map +1 -0
- package/demo/node_modules/openai/_shims/registry.mjs +37 -0
- package/demo/node_modules/openai/_shims/registry.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/web-runtime.d.ts +5 -0
- package/demo/node_modules/openai/_shims/web-runtime.d.ts.map +1 -0
- package/demo/node_modules/openai/_shims/web-runtime.js +78 -0
- package/demo/node_modules/openai/_shims/web-runtime.js.map +1 -0
- package/demo/node_modules/openai/_shims/web-runtime.mjs +71 -0
- package/demo/node_modules/openai/_shims/web-runtime.mjs.map +1 -0
- package/demo/node_modules/openai/_shims/web-types.d.ts +83 -0
- package/demo/node_modules/openai/_shims/web-types.js +3 -0
- package/demo/node_modules/openai/_shims/web-types.mjs +3 -0
- package/demo/node_modules/openai/bin/cli +49 -0
- package/demo/node_modules/openai/core.d.ts +239 -0
- package/demo/node_modules/openai/core.d.ts.map +1 -0
- package/demo/node_modules/openai/core.js +879 -0
- package/demo/node_modules/openai/core.js.map +1 -0
- package/demo/node_modules/openai/core.mjs +848 -0
- package/demo/node_modules/openai/core.mjs.map +1 -0
- package/demo/node_modules/openai/error.d.ts +57 -0
- package/demo/node_modules/openai/error.d.ts.map +1 -0
- package/demo/node_modules/openai/error.js +148 -0
- package/demo/node_modules/openai/error.js.map +1 -0
- package/demo/node_modules/openai/error.mjs +132 -0
- package/demo/node_modules/openai/error.mjs.map +1 -0
- package/demo/node_modules/openai/index.d.mts +267 -0
- package/demo/node_modules/openai/index.d.ts +267 -0
- package/demo/node_modules/openai/index.d.ts.map +1 -0
- package/demo/node_modules/openai/index.js +262 -0
- package/demo/node_modules/openai/index.js.map +1 -0
- package/demo/node_modules/openai/index.mjs +232 -0
- package/demo/node_modules/openai/index.mjs.map +1 -0
- package/demo/node_modules/openai/lib/AbstractAssistantStreamRunner.d.ts +74 -0
- package/demo/node_modules/openai/lib/AbstractAssistantStreamRunner.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/AbstractAssistantStreamRunner.js +246 -0
- package/demo/node_modules/openai/lib/AbstractAssistantStreamRunner.js.map +1 -0
- package/demo/node_modules/openai/lib/AbstractAssistantStreamRunner.mjs +242 -0
- package/demo/node_modules/openai/lib/AbstractAssistantStreamRunner.mjs.map +1 -0
- package/demo/node_modules/openai/lib/AbstractChatCompletionRunner.d.ts +114 -0
- package/demo/node_modules/openai/lib/AbstractChatCompletionRunner.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/AbstractChatCompletionRunner.js +519 -0
- package/demo/node_modules/openai/lib/AbstractChatCompletionRunner.js.map +1 -0
- package/demo/node_modules/openai/lib/AbstractChatCompletionRunner.mjs +515 -0
- package/demo/node_modules/openai/lib/AbstractChatCompletionRunner.mjs.map +1 -0
- package/demo/node_modules/openai/lib/AssistantStream.d.ts +58 -0
- package/demo/node_modules/openai/lib/AssistantStream.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/AssistantStream.js +548 -0
- package/demo/node_modules/openai/lib/AssistantStream.js.map +1 -0
- package/demo/node_modules/openai/lib/AssistantStream.mjs +521 -0
- package/demo/node_modules/openai/lib/AssistantStream.mjs.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunFunctions.test.d.ts +2 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunFunctions.test.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunFunctions.test.js +2177 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunFunctions.test.js.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunFunctions.test.mjs +2172 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunFunctions.test.mjs.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunner.d.ts +19 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunner.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunner.js +34 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunner.js.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunner.mjs +30 -0
- package/demo/node_modules/openai/lib/ChatCompletionRunner.mjs.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionStream.d.ts +149 -0
- package/demo/node_modules/openai/lib/ChatCompletionStream.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionStream.js +312 -0
- package/demo/node_modules/openai/lib/ChatCompletionStream.js.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionStream.mjs +308 -0
- package/demo/node_modules/openai/lib/ChatCompletionStream.mjs.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionStreamingRunner.d.ts +22 -0
- package/demo/node_modules/openai/lib/ChatCompletionStreamingRunner.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionStreamingRunner.js +32 -0
- package/demo/node_modules/openai/lib/ChatCompletionStreamingRunner.js.map +1 -0
- package/demo/node_modules/openai/lib/ChatCompletionStreamingRunner.mjs +28 -0
- package/demo/node_modules/openai/lib/ChatCompletionStreamingRunner.mjs.map +1 -0
- package/demo/node_modules/openai/lib/RunnableFunction.d.ts +95 -0
- package/demo/node_modules/openai/lib/RunnableFunction.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/RunnableFunction.js +35 -0
- package/demo/node_modules/openai/lib/RunnableFunction.js.map +1 -0
- package/demo/node_modules/openai/lib/RunnableFunction.mjs +29 -0
- package/demo/node_modules/openai/lib/RunnableFunction.mjs.map +1 -0
- package/demo/node_modules/openai/lib/Util.d.ts +5 -0
- package/demo/node_modules/openai/lib/Util.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/Util.js +26 -0
- package/demo/node_modules/openai/lib/Util.js.map +1 -0
- package/demo/node_modules/openai/lib/Util.mjs +22 -0
- package/demo/node_modules/openai/lib/Util.mjs.map +1 -0
- package/demo/node_modules/openai/lib/chatCompletionUtils.d.ts +6 -0
- package/demo/node_modules/openai/lib/chatCompletionUtils.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/chatCompletionUtils.js +20 -0
- package/demo/node_modules/openai/lib/chatCompletionUtils.js.map +1 -0
- package/demo/node_modules/openai/lib/chatCompletionUtils.mjs +13 -0
- package/demo/node_modules/openai/lib/chatCompletionUtils.mjs.map +1 -0
- package/demo/node_modules/openai/lib/jsonschema.d.ts +106 -0
- package/demo/node_modules/openai/lib/jsonschema.d.ts.map +1 -0
- package/demo/node_modules/openai/lib/jsonschema.js +11 -0
- package/demo/node_modules/openai/lib/jsonschema.js.map +1 -0
- package/demo/node_modules/openai/lib/jsonschema.mjs +10 -0
- package/demo/node_modules/openai/lib/jsonschema.mjs.map +1 -0
- package/demo/node_modules/openai/package.json +105 -0
- package/demo/node_modules/openai/pagination.d.ts +37 -0
- package/demo/node_modules/openai/pagination.d.ts.map +1 -0
- package/demo/node_modules/openai/pagination.js +64 -0
- package/demo/node_modules/openai/pagination.js.map +1 -0
- package/demo/node_modules/openai/pagination.mjs +59 -0
- package/demo/node_modules/openai/pagination.mjs.map +1 -0
- package/demo/node_modules/openai/resource.d.ts +6 -0
- package/demo/node_modules/openai/resource.d.ts.map +1 -0
- package/demo/node_modules/openai/resource.js +11 -0
- package/demo/node_modules/openai/resource.js.map +1 -0
- package/demo/node_modules/openai/resource.mjs +7 -0
- package/demo/node_modules/openai/resource.mjs.map +1 -0
- package/demo/node_modules/openai/resources/audio/audio.d.ts +20 -0
- package/demo/node_modules/openai/resources/audio/audio.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/audio/audio.js +46 -0
- package/demo/node_modules/openai/resources/audio/audio.js.map +1 -0
- package/demo/node_modules/openai/resources/audio/audio.mjs +19 -0
- package/demo/node_modules/openai/resources/audio/audio.mjs.map +1 -0
- package/demo/node_modules/openai/resources/audio/index.d.ts +5 -0
- package/demo/node_modules/openai/resources/audio/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/audio/index.js +13 -0
- package/demo/node_modules/openai/resources/audio/index.js.map +1 -0
- package/demo/node_modules/openai/resources/audio/index.mjs +6 -0
- package/demo/node_modules/openai/resources/audio/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/audio/speech.d.ts +42 -0
- package/demo/node_modules/openai/resources/audio/speech.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/audio/speech.js +17 -0
- package/demo/node_modules/openai/resources/audio/speech.js.map +1 -0
- package/demo/node_modules/openai/resources/audio/speech.mjs +13 -0
- package/demo/node_modules/openai/resources/audio/speech.mjs.map +1 -0
- package/demo/node_modules/openai/resources/audio/transcriptions.d.ts +71 -0
- package/demo/node_modules/openai/resources/audio/transcriptions.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/audio/transcriptions.js +18 -0
- package/demo/node_modules/openai/resources/audio/transcriptions.js.map +1 -0
- package/demo/node_modules/openai/resources/audio/transcriptions.mjs +14 -0
- package/demo/node_modules/openai/resources/audio/transcriptions.mjs.map +1 -0
- package/demo/node_modules/openai/resources/audio/translations.d.ts +50 -0
- package/demo/node_modules/openai/resources/audio/translations.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/audio/translations.js +18 -0
- package/demo/node_modules/openai/resources/audio/translations.js.map +1 -0
- package/demo/node_modules/openai/resources/audio/translations.mjs +14 -0
- package/demo/node_modules/openai/resources/audio/translations.mjs.map +1 -0
- package/demo/node_modules/openai/resources/batches.d.ts +189 -0
- package/demo/node_modules/openai/resources/batches.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/batches.js +65 -0
- package/demo/node_modules/openai/resources/batches.js.map +1 -0
- package/demo/node_modules/openai/resources/batches.mjs +37 -0
- package/demo/node_modules/openai/resources/batches.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/assistants.d.ts +1048 -0
- package/demo/node_modules/openai/resources/beta/assistants.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/assistants.js +89 -0
- package/demo/node_modules/openai/resources/beta/assistants.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/assistants.mjs +61 -0
- package/demo/node_modules/openai/resources/beta/assistants.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/beta.d.ts +53 -0
- package/demo/node_modules/openai/resources/beta/beta.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/beta.js +51 -0
- package/demo/node_modules/openai/resources/beta/beta.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/beta.mjs +24 -0
- package/demo/node_modules/openai/resources/beta/beta.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/chat.d.ts +9 -0
- package/demo/node_modules/openai/resources/beta/chat/chat.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/chat.js +40 -0
- package/demo/node_modules/openai/resources/beta/chat/chat.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/chat.mjs +13 -0
- package/demo/node_modules/openai/resources/beta/chat/chat.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/completions.d.ts +37 -0
- package/demo/node_modules/openai/resources/beta/chat/completions.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/completions.js +39 -0
- package/demo/node_modules/openai/resources/beta/chat/completions.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/completions.mjs +30 -0
- package/demo/node_modules/openai/resources/beta/chat/completions.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/index.d.ts +3 -0
- package/demo/node_modules/openai/resources/beta/chat/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/index.js +9 -0
- package/demo/node_modules/openai/resources/beta/chat/index.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/chat/index.mjs +4 -0
- package/demo/node_modules/openai/resources/beta/chat/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/index.d.ts +6 -0
- package/demo/node_modules/openai/resources/beta/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/index.js +17 -0
- package/demo/node_modules/openai/resources/beta/index.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/index.mjs +7 -0
- package/demo/node_modules/openai/resources/beta/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/index.d.ts +4 -0
- package/demo/node_modules/openai/resources/beta/threads/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/index.js +13 -0
- package/demo/node_modules/openai/resources/beta/threads/index.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/index.mjs +5 -0
- package/demo/node_modules/openai/resources/beta/threads/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/messages.d.ts +552 -0
- package/demo/node_modules/openai/resources/beta/threads/messages.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/messages.js +89 -0
- package/demo/node_modules/openai/resources/beta/threads/messages.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/messages.mjs +61 -0
- package/demo/node_modules/openai/resources/beta/threads/messages.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/index.d.ts +3 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/index.js +11 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/index.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/index.mjs +4 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/runs.d.ts +1194 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/runs.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/runs.js +190 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/runs.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/runs.mjs +162 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/runs.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/steps.d.ts +520 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/steps.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/steps.js +60 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/steps.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/steps.mjs +32 -0
- package/demo/node_modules/openai/resources/beta/threads/runs/steps.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/threads.d.ts +1240 -0
- package/demo/node_modules/openai/resources/beta/threads/threads.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/threads.js +108 -0
- package/demo/node_modules/openai/resources/beta/threads/threads.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/threads/threads.mjs +81 -0
- package/demo/node_modules/openai/resources/beta/threads/threads.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/file-batches.d.ts +142 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/file-batches.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/file-batches.js +129 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/file-batches.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/file-batches.mjs +125 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/file-batches.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/files.d.ts +154 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/files.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/files.js +149 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/files.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/files.mjs +121 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/files.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/index.d.ts +4 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/index.js +13 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/index.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/index.mjs +5 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/vector-stores.d.ts +233 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/vector-stores.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/vector-stores.js +99 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/vector-stores.js.map +1 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/vector-stores.mjs +71 -0
- package/demo/node_modules/openai/resources/beta/vector-stores/vector-stores.mjs.map +1 -0
- package/demo/node_modules/openai/resources/chat/chat.d.ts +42 -0
- package/demo/node_modules/openai/resources/chat/chat.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/chat/chat.js +40 -0
- package/demo/node_modules/openai/resources/chat/chat.js.map +1 -0
- package/demo/node_modules/openai/resources/chat/chat.mjs +13 -0
- package/demo/node_modules/openai/resources/chat/chat.mjs.map +1 -0
- package/demo/node_modules/openai/resources/chat/completions.d.ts +845 -0
- package/demo/node_modules/openai/resources/chat/completions.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/chat/completions.js +14 -0
- package/demo/node_modules/openai/resources/chat/completions.js.map +1 -0
- package/demo/node_modules/openai/resources/chat/completions.mjs +10 -0
- package/demo/node_modules/openai/resources/chat/completions.mjs.map +1 -0
- package/demo/node_modules/openai/resources/chat/index.d.ts +3 -0
- package/demo/node_modules/openai/resources/chat/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/chat/index.js +9 -0
- package/demo/node_modules/openai/resources/chat/index.js.map +1 -0
- package/demo/node_modules/openai/resources/chat/index.mjs +4 -0
- package/demo/node_modules/openai/resources/chat/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/completions.d.ts +272 -0
- package/demo/node_modules/openai/resources/completions.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/completions.js +14 -0
- package/demo/node_modules/openai/resources/completions.js.map +1 -0
- package/demo/node_modules/openai/resources/completions.mjs +10 -0
- package/demo/node_modules/openai/resources/completions.mjs.map +1 -0
- package/demo/node_modules/openai/resources/embeddings.d.ts +103 -0
- package/demo/node_modules/openai/resources/embeddings.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/embeddings.js +17 -0
- package/demo/node_modules/openai/resources/embeddings.js.map +1 -0
- package/demo/node_modules/openai/resources/embeddings.mjs +13 -0
- package/demo/node_modules/openai/resources/embeddings.mjs.map +1 -0
- package/demo/node_modules/openai/resources/files.d.ts +140 -0
- package/demo/node_modules/openai/resources/files.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/files.js +120 -0
- package/demo/node_modules/openai/resources/files.js.map +1 -0
- package/demo/node_modules/openai/resources/files.mjs +92 -0
- package/demo/node_modules/openai/resources/files.mjs.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/fine-tuning.d.ts +19 -0
- package/demo/node_modules/openai/resources/fine-tuning/fine-tuning.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/fine-tuning.js +42 -0
- package/demo/node_modules/openai/resources/fine-tuning/fine-tuning.js.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/fine-tuning.mjs +15 -0
- package/demo/node_modules/openai/resources/fine-tuning/fine-tuning.mjs.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/index.d.ts +3 -0
- package/demo/node_modules/openai/resources/fine-tuning/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/index.js +11 -0
- package/demo/node_modules/openai/resources/fine-tuning/index.js.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/index.mjs +4 -0
- package/demo/node_modules/openai/resources/fine-tuning/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/checkpoints.d.ts +69 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/checkpoints.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/checkpoints.js +47 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/checkpoints.js.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/checkpoints.mjs +19 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/checkpoints.mjs.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/index.d.ts +3 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/index.js +12 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/index.js.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/index.mjs +4 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/jobs.d.ts +362 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/jobs.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/jobs.js +93 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/jobs.js.map +1 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/jobs.mjs +64 -0
- package/demo/node_modules/openai/resources/fine-tuning/jobs/jobs.mjs.map +1 -0
- package/demo/node_modules/openai/resources/images.d.ts +174 -0
- package/demo/node_modules/openai/resources/images.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/images.js +30 -0
- package/demo/node_modules/openai/resources/images.js.map +1 -0
- package/demo/node_modules/openai/resources/images.mjs +26 -0
- package/demo/node_modules/openai/resources/images.mjs.map +1 -0
- package/demo/node_modules/openai/resources/index.d.ts +13 -0
- package/demo/node_modules/openai/resources/index.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/index.js +44 -0
- package/demo/node_modules/openai/resources/index.js.map +1 -0
- package/demo/node_modules/openai/resources/index.mjs +14 -0
- package/demo/node_modules/openai/resources/index.mjs.map +1 -0
- package/demo/node_modules/openai/resources/models.d.ts +58 -0
- package/demo/node_modules/openai/resources/models.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/models.js +64 -0
- package/demo/node_modules/openai/resources/models.js.map +1 -0
- package/demo/node_modules/openai/resources/models.mjs +36 -0
- package/demo/node_modules/openai/resources/models.mjs.map +1 -0
- package/demo/node_modules/openai/resources/moderations.d.ts +176 -0
- package/demo/node_modules/openai/resources/moderations.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/moderations.js +17 -0
- package/demo/node_modules/openai/resources/moderations.js.map +1 -0
- package/demo/node_modules/openai/resources/moderations.mjs +13 -0
- package/demo/node_modules/openai/resources/moderations.mjs.map +1 -0
- package/demo/node_modules/openai/resources/shared.d.ts +39 -0
- package/demo/node_modules/openai/resources/shared.d.ts.map +1 -0
- package/demo/node_modules/openai/resources/shared.js +4 -0
- package/demo/node_modules/openai/resources/shared.js.map +1 -0
- package/demo/node_modules/openai/resources/shared.mjs +3 -0
- package/demo/node_modules/openai/resources/shared.mjs.map +1 -0
- package/demo/node_modules/openai/shims/node.d.ts +29 -0
- package/demo/node_modules/openai/shims/node.d.ts.map +1 -0
- package/demo/node_modules/openai/shims/node.js +31 -0
- package/demo/node_modules/openai/shims/node.js.map +1 -0
- package/demo/node_modules/openai/shims/node.mjs +5 -0
- package/demo/node_modules/openai/shims/node.mjs.map +1 -0
- package/demo/node_modules/openai/shims/web.d.ts +26 -0
- package/demo/node_modules/openai/shims/web.d.ts.map +1 -0
- package/demo/node_modules/openai/shims/web.js +31 -0
- package/demo/node_modules/openai/shims/web.js.map +1 -0
- package/demo/node_modules/openai/shims/web.mjs +5 -0
- package/demo/node_modules/openai/shims/web.mjs.map +1 -0
- package/demo/node_modules/openai/src/_shims/MultipartBody.ts +9 -0
- package/demo/node_modules/openai/src/_shims/README.md +46 -0
- package/demo/node_modules/openai/src/_shims/auto/runtime-bun.ts +4 -0
- package/demo/node_modules/openai/src/_shims/auto/runtime-node.ts +4 -0
- package/demo/node_modules/openai/src/_shims/auto/runtime.ts +4 -0
- package/demo/node_modules/openai/src/_shims/auto/types-node.ts +4 -0
- package/demo/node_modules/openai/src/_shims/auto/types.d.ts +101 -0
- package/demo/node_modules/openai/src/_shims/auto/types.js +3 -0
- package/demo/node_modules/openai/src/_shims/auto/types.mjs +3 -0
- package/demo/node_modules/openai/src/_shims/bun-runtime.ts +14 -0
- package/demo/node_modules/openai/src/_shims/index.d.ts +81 -0
- package/demo/node_modules/openai/src/_shims/index.js +13 -0
- package/demo/node_modules/openai/src/_shims/index.mjs +7 -0
- package/demo/node_modules/openai/src/_shims/manual-types.d.ts +12 -0
- package/demo/node_modules/openai/src/_shims/manual-types.js +3 -0
- package/demo/node_modules/openai/src/_shims/manual-types.mjs +3 -0
- package/demo/node_modules/openai/src/_shims/node-runtime.ts +83 -0
- package/demo/node_modules/openai/src/_shims/node-types.d.ts +42 -0
- package/demo/node_modules/openai/src/_shims/node-types.js +3 -0
- package/demo/node_modules/openai/src/_shims/node-types.mjs +3 -0
- package/demo/node_modules/openai/src/_shims/registry.ts +65 -0
- package/demo/node_modules/openai/src/_shims/web-runtime.ts +103 -0
- package/demo/node_modules/openai/src/_shims/web-types.d.ts +83 -0
- package/demo/node_modules/openai/src/_shims/web-types.js +3 -0
- package/demo/node_modules/openai/src/_shims/web-types.mjs +3 -0
- package/demo/node_modules/openai/src/core.ts +1162 -0
- package/demo/node_modules/openai/src/error.ts +158 -0
- package/demo/node_modules/openai/src/index.ts +502 -0
- package/demo/node_modules/openai/src/lib/.keep +4 -0
- package/demo/node_modules/openai/src/lib/AbstractAssistantStreamRunner.ts +340 -0
- package/demo/node_modules/openai/src/lib/AbstractChatCompletionRunner.ts +682 -0
- package/demo/node_modules/openai/src/lib/AssistantStream.ts +723 -0
- package/demo/node_modules/openai/src/lib/ChatCompletionRunFunctions.test.ts +2328 -0
- package/demo/node_modules/openai/src/lib/ChatCompletionRunner.ts +68 -0
- package/demo/node_modules/openai/src/lib/ChatCompletionStream.ts +494 -0
- package/demo/node_modules/openai/src/lib/ChatCompletionStreamingRunner.ts +68 -0
- package/demo/node_modules/openai/src/lib/RunnableFunction.ts +134 -0
- package/demo/node_modules/openai/src/lib/Util.ts +23 -0
- package/demo/node_modules/openai/src/lib/chatCompletionUtils.ts +28 -0
- package/demo/node_modules/openai/src/lib/jsonschema.ts +148 -0
- package/demo/node_modules/openai/src/pagination.ts +98 -0
- package/demo/node_modules/openai/src/resource.ts +11 -0
- package/demo/node_modules/openai/src/resources/audio/audio.ts +23 -0
- package/demo/node_modules/openai/src/resources/audio/index.ts +6 -0
- package/demo/node_modules/openai/src/resources/audio/speech.ts +52 -0
- package/demo/node_modules/openai/src/resources/audio/transcriptions.ts +84 -0
- package/demo/node_modules/openai/src/resources/audio/translations.ts +61 -0
- package/demo/node_modules/openai/src/resources/batches.ts +252 -0
- package/demo/node_modules/openai/src/resources/beta/assistants.ts +1315 -0
- package/demo/node_modules/openai/src/resources/beta/beta.ts +56 -0
- package/demo/node_modules/openai/src/resources/beta/chat/chat.ts +12 -0
- package/demo/node_modules/openai/src/resources/beta/chat/completions.ts +106 -0
- package/demo/node_modules/openai/src/resources/beta/chat/index.ts +4 -0
- package/demo/node_modules/openai/src/resources/beta/index.ts +48 -0
- package/demo/node_modules/openai/src/resources/beta/threads/index.ts +72 -0
- package/demo/node_modules/openai/src/resources/beta/threads/messages.ts +706 -0
- package/demo/node_modules/openai/src/resources/beta/threads/runs/index.ts +44 -0
- package/demo/node_modules/openai/src/resources/beta/threads/runs/runs.ts +1627 -0
- package/demo/node_modules/openai/src/resources/beta/threads/runs/steps.ts +641 -0
- package/demo/node_modules/openai/src/resources/beta/threads/threads.ts +1536 -0
- package/demo/node_modules/openai/src/resources/beta/vector-stores/file-batches.ts +293 -0
- package/demo/node_modules/openai/src/resources/beta/vector-stores/files.ts +284 -0
- package/demo/node_modules/openai/src/resources/beta/vector-stores/index.ts +25 -0
- package/demo/node_modules/openai/src/resources/beta/vector-stores/vector-stores.ts +318 -0
- package/demo/node_modules/openai/src/resources/chat/chat.ts +67 -0
- package/demo/node_modules/openai/src/resources/chat/completions.ts +996 -0
- package/demo/node_modules/openai/src/resources/chat/index.ts +33 -0
- package/demo/node_modules/openai/src/resources/completions.ts +329 -0
- package/demo/node_modules/openai/src/resources/embeddings.ts +125 -0
- package/demo/node_modules/openai/src/resources/files.ts +214 -0
- package/demo/node_modules/openai/src/resources/fine-tuning/fine-tuning.ts +22 -0
- package/demo/node_modules/openai/src/resources/fine-tuning/index.ts +16 -0
- package/demo/node_modules/openai/src/resources/fine-tuning/jobs/checkpoints.ts +108 -0
- package/demo/node_modules/openai/src/resources/fine-tuning/jobs/index.ts +21 -0
- package/demo/node_modules/openai/src/resources/fine-tuning/jobs/jobs.ts +458 -0
- package/demo/node_modules/openai/src/resources/images.ts +215 -0
- package/demo/node_modules/openai/src/resources/index.ts +45 -0
- package/demo/node_modules/openai/src/resources/models.ts +76 -0
- package/demo/node_modules/openai/src/resources/moderations.ts +214 -0
- package/demo/node_modules/openai/src/resources/shared.ts +47 -0
- package/demo/node_modules/openai/src/shims/node.ts +50 -0
- package/demo/node_modules/openai/src/shims/web.ts +50 -0
- package/demo/node_modules/openai/src/streaming.ts +508 -0
- package/demo/node_modules/openai/src/tsconfig.json +11 -0
- package/demo/node_modules/openai/src/uploads.ts +248 -0
- package/demo/node_modules/openai/src/version.ts +1 -0
- package/demo/node_modules/openai/streaming.d.ts +41 -0
- package/demo/node_modules/openai/streaming.d.ts.map +1 -0
- package/demo/node_modules/openai/streaming.js +433 -0
- package/demo/node_modules/openai/streaming.js.map +1 -0
- package/demo/node_modules/openai/streaming.mjs +426 -0
- package/demo/node_modules/openai/streaming.mjs.map +1 -0
- package/demo/node_modules/openai/uploads.d.ts +75 -0
- package/demo/node_modules/openai/uploads.d.ts.map +1 -0
- package/demo/node_modules/openai/uploads.js +165 -0
- package/demo/node_modules/openai/uploads.js.map +1 -0
- package/demo/node_modules/openai/uploads.mjs +152 -0
- package/demo/node_modules/openai/uploads.mjs.map +1 -0
- package/demo/node_modules/openai/version.d.ts +2 -0
- package/demo/node_modules/openai/version.d.ts.map +1 -0
- package/demo/node_modules/openai/version.js +5 -0
- package/demo/node_modules/openai/version.js.map +1 -0
- package/demo/node_modules/openai/version.mjs +2 -0
- package/demo/node_modules/openai/version.mjs.map +1 -0
- package/demo/node_modules/tr46/index.js +193 -0
- package/demo/node_modules/tr46/lib/.gitkeep +0 -0
- package/demo/node_modules/tr46/lib/mappingTable.json +1 -0
- package/demo/node_modules/tr46/package.json +31 -0
- package/demo/node_modules/undici-types/README.md +6 -0
- package/demo/node_modules/undici-types/agent.d.ts +31 -0
- package/demo/node_modules/undici-types/api.d.ts +43 -0
- package/demo/node_modules/undici-types/balanced-pool.d.ts +18 -0
- package/demo/node_modules/undici-types/cache.d.ts +36 -0
- package/demo/node_modules/undici-types/client.d.ts +97 -0
- package/demo/node_modules/undici-types/connector.d.ts +34 -0
- package/demo/node_modules/undici-types/content-type.d.ts +21 -0
- package/demo/node_modules/undici-types/cookies.d.ts +28 -0
- package/demo/node_modules/undici-types/diagnostics-channel.d.ts +67 -0
- package/demo/node_modules/undici-types/dispatcher.d.ts +241 -0
- package/demo/node_modules/undici-types/errors.d.ts +128 -0
- package/demo/node_modules/undici-types/fetch.d.ts +209 -0
- package/demo/node_modules/undici-types/file.d.ts +39 -0
- package/demo/node_modules/undici-types/filereader.d.ts +54 -0
- package/demo/node_modules/undici-types/formdata.d.ts +108 -0
- package/demo/node_modules/undici-types/global-dispatcher.d.ts +9 -0
- package/demo/node_modules/undici-types/global-origin.d.ts +7 -0
- package/demo/node_modules/undici-types/handlers.d.ts +9 -0
- package/demo/node_modules/undici-types/header.d.ts +4 -0
- package/demo/node_modules/undici-types/index.d.ts +63 -0
- package/demo/node_modules/undici-types/interceptors.d.ts +5 -0
- package/demo/node_modules/undici-types/mock-agent.d.ts +50 -0
- package/demo/node_modules/undici-types/mock-client.d.ts +25 -0
- package/demo/node_modules/undici-types/mock-errors.d.ts +12 -0
- package/demo/node_modules/undici-types/mock-interceptor.d.ts +93 -0
- package/demo/node_modules/undici-types/mock-pool.d.ts +25 -0
- package/demo/node_modules/undici-types/package.json +55 -0
- package/demo/node_modules/undici-types/patch.d.ts +71 -0
- package/demo/node_modules/undici-types/pool-stats.d.ts +19 -0
- package/demo/node_modules/undici-types/pool.d.ts +28 -0
- package/demo/node_modules/undici-types/proxy-agent.d.ts +30 -0
- package/demo/node_modules/undici-types/readable.d.ts +61 -0
- package/demo/node_modules/undici-types/webidl.d.ts +220 -0
- package/demo/node_modules/undici-types/websocket.d.ts +131 -0
- package/demo/node_modules/web-streams-polyfill/LICENSE +22 -0
- package/demo/node_modules/web-streams-polyfill/README.md +110 -0
- package/demo/node_modules/web-streams-polyfill/es2018/package.json +14 -0
- package/demo/node_modules/web-streams-polyfill/es6/package.json +14 -0
- package/demo/node_modules/web-streams-polyfill/package.json +83 -0
- package/demo/node_modules/web-streams-polyfill/ponyfill/es2018/package.json +13 -0
- package/demo/node_modules/web-streams-polyfill/ponyfill/es6/package.json +13 -0
- package/demo/node_modules/web-streams-polyfill/ponyfill/package.json +13 -0
- package/demo/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/demo/node_modules/webidl-conversions/README.md +53 -0
- package/demo/node_modules/webidl-conversions/lib/index.js +189 -0
- package/demo/node_modules/webidl-conversions/package.json +23 -0
- package/demo/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/demo/node_modules/whatwg-url/README.md +67 -0
- package/demo/node_modules/whatwg-url/lib/URL-impl.js +200 -0
- package/demo/node_modules/whatwg-url/lib/URL.js +196 -0
- package/demo/node_modules/whatwg-url/lib/public-api.js +11 -0
- package/demo/node_modules/whatwg-url/lib/url-state-machine.js +1297 -0
- package/demo/node_modules/whatwg-url/lib/utils.js +20 -0
- package/demo/node_modules/whatwg-url/package.json +32 -0
- package/demo/package-lock.json +282 -0
- package/demo/package.json +16 -0
- package/index.js +171 -0
- package/package.json +34 -0
|
@@ -0,0 +1,1176 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 4.47.1 (2024-05-14)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v4.47.0...v4.47.1](https://github.com/openai/openai-node/compare/v4.47.0...v4.47.1)
|
|
6
|
+
|
|
7
|
+
### Chores
|
|
8
|
+
|
|
9
|
+
* **internal:** add slightly better logging to scripts ([#848](https://github.com/openai/openai-node/issues/848)) ([139e690](https://github.com/openai/openai-node/commit/139e690546775b3568934dd990dd329fce2fbc2f))
|
|
10
|
+
|
|
11
|
+
## 4.47.0 (2024-05-14)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v4.46.1...v4.47.0](https://github.com/openai/openai-node/compare/v4.46.1...v4.47.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** add incomplete state ([#846](https://github.com/openai/openai-node/issues/846)) ([5f663a1](https://github.com/openai/openai-node/commit/5f663a167361b905c6d0c1242e8a78037a7e4a57))
|
|
18
|
+
|
|
19
|
+
## 4.46.1 (2024-05-13)
|
|
20
|
+
|
|
21
|
+
Full Changelog: [v4.46.0...v4.46.1](https://github.com/openai/openai-node/compare/v4.46.0...v4.46.1)
|
|
22
|
+
|
|
23
|
+
### Refactors
|
|
24
|
+
|
|
25
|
+
* change import paths to be relative ([#843](https://github.com/openai/openai-node/issues/843)) ([7913574](https://github.com/openai/openai-node/commit/7913574bdb6fcbcf68e56e8def351add6c43310a))
|
|
26
|
+
|
|
27
|
+
## 4.46.0 (2024-05-13)
|
|
28
|
+
|
|
29
|
+
Full Changelog: [v4.45.0...v4.46.0](https://github.com/openai/openai-node/compare/v4.45.0...v4.46.0)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **api:** add gpt-4o model ([#841](https://github.com/openai/openai-node/issues/841)) ([c818ed1](https://github.com/openai/openai-node/commit/c818ed139bfba81af6ca3c4eda08d52366758529))
|
|
34
|
+
|
|
35
|
+
## 4.45.0 (2024-05-11)
|
|
36
|
+
|
|
37
|
+
Full Changelog: [v4.44.0...v4.45.0](https://github.com/openai/openai-node/compare/v4.44.0...v4.45.0)
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* **azure:** batch api ([#839](https://github.com/openai/openai-node/issues/839)) ([e279f8c](https://github.com/openai/openai-node/commit/e279f8c51aa80cb913ccb6df647407bea1f2f071))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Chores
|
|
45
|
+
|
|
46
|
+
* **dependency:** bumped Next.js version ([#836](https://github.com/openai/openai-node/issues/836)) ([babb140](https://github.com/openai/openai-node/commit/babb1404751059bdd171b792d03fd21272dd8f8b))
|
|
47
|
+
* **docs:** add SECURITY.md ([#838](https://github.com/openai/openai-node/issues/838)) ([6e556d9](https://github.com/openai/openai-node/commit/6e556d9e12341155cc13fe226ab110d63858370e))
|
|
48
|
+
|
|
49
|
+
## 4.44.0 (2024-05-09)
|
|
50
|
+
|
|
51
|
+
Full Changelog: [v4.43.0...v4.44.0](https://github.com/openai/openai-node/compare/v4.43.0...v4.44.0)
|
|
52
|
+
|
|
53
|
+
### Features
|
|
54
|
+
|
|
55
|
+
* **api:** add message image content ([#834](https://github.com/openai/openai-node/issues/834)) ([7757b3e](https://github.com/openai/openai-node/commit/7757b3ea54a2c5cc251f55af0b676952ba12e8a6))
|
|
56
|
+
|
|
57
|
+
## 4.43.0 (2024-05-08)
|
|
58
|
+
|
|
59
|
+
Full Changelog: [v4.42.0...v4.43.0](https://github.com/openai/openai-node/compare/v4.42.0...v4.43.0)
|
|
60
|
+
|
|
61
|
+
### Features
|
|
62
|
+
|
|
63
|
+
* **api:** adding file purposes ([#831](https://github.com/openai/openai-node/issues/831)) ([a62b877](https://github.com/openai/openai-node/commit/a62b8779ff7261cdd6aa7bf72fb6407cc7e3fd21))
|
|
64
|
+
|
|
65
|
+
## 4.42.0 (2024-05-06)
|
|
66
|
+
|
|
67
|
+
Full Changelog: [v4.41.1...v4.42.0](https://github.com/openai/openai-node/compare/v4.41.1...v4.42.0)
|
|
68
|
+
|
|
69
|
+
### Features
|
|
70
|
+
|
|
71
|
+
* **api:** add usage metadata when streaming ([#829](https://github.com/openai/openai-node/issues/829)) ([6707f11](https://github.com/openai/openai-node/commit/6707f119a191ad98d634ad208be852f9f39c6c0e))
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Bug Fixes
|
|
75
|
+
|
|
76
|
+
* **example:** fix fine tuning example ([#827](https://github.com/openai/openai-node/issues/827)) ([6480a50](https://github.com/openai/openai-node/commit/6480a506c096a2664bd2ad296481e51017ff4185))
|
|
77
|
+
|
|
78
|
+
## 4.41.1 (2024-05-06)
|
|
79
|
+
|
|
80
|
+
Full Changelog: [v4.41.0...v4.41.1](https://github.com/openai/openai-node/compare/v4.41.0...v4.41.1)
|
|
81
|
+
|
|
82
|
+
### Bug Fixes
|
|
83
|
+
|
|
84
|
+
* **azure:** update build script ([#825](https://github.com/openai/openai-node/issues/825)) ([8afc6e7](https://github.com/openai/openai-node/commit/8afc6e7b49507b3be0228e93913d51b4c3211add))
|
|
85
|
+
|
|
86
|
+
## 4.41.0 (2024-05-05)
|
|
87
|
+
|
|
88
|
+
Full Changelog: [v4.40.2...v4.41.0](https://github.com/openai/openai-node/compare/v4.40.2...v4.41.0)
|
|
89
|
+
|
|
90
|
+
### Features
|
|
91
|
+
|
|
92
|
+
* **client:** add Azure client ([#822](https://github.com/openai/openai-node/issues/822)) ([92f9049](https://github.com/openai/openai-node/commit/92f90499f0bbee79ba9c8342c8d58dbcaf88bdd1))
|
|
93
|
+
|
|
94
|
+
## 4.40.2 (2024-05-03)
|
|
95
|
+
|
|
96
|
+
Full Changelog: [v4.40.1...v4.40.2](https://github.com/openai/openai-node/compare/v4.40.1...v4.40.2)
|
|
97
|
+
|
|
98
|
+
### Bug Fixes
|
|
99
|
+
|
|
100
|
+
* **package:** revert recent client file change ([#819](https://github.com/openai/openai-node/issues/819)) ([fa722c9](https://github.com/openai/openai-node/commit/fa722c97859e55a0e766332c3a2f0cb3673128a2))
|
|
101
|
+
* **vectorStores:** correct uploadAndPoll method ([#817](https://github.com/openai/openai-node/issues/817)) ([d63f22c](https://github.com/openai/openai-node/commit/d63f22c303761710e6eac7ef883c45e34d223df1))
|
|
102
|
+
|
|
103
|
+
## 4.40.1 (2024-05-02)
|
|
104
|
+
|
|
105
|
+
Full Changelog: [v4.40.0...v4.40.1](https://github.com/openai/openai-node/compare/v4.40.0...v4.40.1)
|
|
106
|
+
|
|
107
|
+
### Chores
|
|
108
|
+
|
|
109
|
+
* **internal:** bump prism version ([#813](https://github.com/openai/openai-node/issues/813)) ([81a6c28](https://github.com/openai/openai-node/commit/81a6c28c4773a0245ce9c505fc5b98d43df21beb))
|
|
110
|
+
* **internal:** move client class to separate file ([#815](https://github.com/openai/openai-node/issues/815)) ([d0b915a](https://github.com/openai/openai-node/commit/d0b915a7514eda5b23d7d1e4420d1d1485ed8d0f))
|
|
111
|
+
|
|
112
|
+
## 4.40.0 (2024-05-01)
|
|
113
|
+
|
|
114
|
+
Full Changelog: [v4.39.1...v4.40.0](https://github.com/openai/openai-node/compare/v4.39.1...v4.40.0)
|
|
115
|
+
|
|
116
|
+
### Features
|
|
117
|
+
|
|
118
|
+
* **api:** delete messages ([#811](https://github.com/openai/openai-node/issues/811)) ([9e37dbd](https://github.com/openai/openai-node/commit/9e37dbd554e4ca48fda1577b1aad612e9d30534d))
|
|
119
|
+
|
|
120
|
+
## 4.39.1 (2024-04-30)
|
|
121
|
+
|
|
122
|
+
Full Changelog: [v4.39.0...v4.39.1](https://github.com/openai/openai-node/compare/v4.39.0...v4.39.1)
|
|
123
|
+
|
|
124
|
+
### Chores
|
|
125
|
+
|
|
126
|
+
* **internal:** add link to openapi spec ([#810](https://github.com/openai/openai-node/issues/810)) ([61b5b83](https://github.com/openai/openai-node/commit/61b5b83e82dd723e9584232f3b805ed13e58e13d))
|
|
127
|
+
* **internal:** fix release please for deno ([#808](https://github.com/openai/openai-node/issues/808)) ([ecc2eae](https://github.com/openai/openai-node/commit/ecc2eaec602eb9fe518f011920d8500e01fde01b))
|
|
128
|
+
* **internal:** refactor scripts ([#806](https://github.com/openai/openai-node/issues/806)) ([9283519](https://github.com/openai/openai-node/commit/928351928054feb56f8797587c70f74d06c2737c))
|
|
129
|
+
|
|
130
|
+
## 4.39.0 (2024-04-29)
|
|
131
|
+
|
|
132
|
+
Full Changelog: [v4.38.5...v4.39.0](https://github.com/openai/openai-node/compare/v4.38.5...v4.39.0)
|
|
133
|
+
|
|
134
|
+
### Features
|
|
135
|
+
|
|
136
|
+
* **api:** add required tool_choice ([#803](https://github.com/openai/openai-node/issues/803)) ([99693e6](https://github.com/openai/openai-node/commit/99693e61debc67327a45dffb2c10c113341bffd6))
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Chores
|
|
140
|
+
|
|
141
|
+
* **internal:** add scripts/test and scripts/mock ([#801](https://github.com/openai/openai-node/issues/801)) ([6656105](https://github.com/openai/openai-node/commit/6656105fa1346a91d17e2b7a5e075f3091310c2f))
|
|
142
|
+
|
|
143
|
+
## 4.38.5 (2024-04-24)
|
|
144
|
+
|
|
145
|
+
Full Changelog: [v4.38.4...v4.38.5](https://github.com/openai/openai-node/compare/v4.38.4...v4.38.5)
|
|
146
|
+
|
|
147
|
+
### Chores
|
|
148
|
+
|
|
149
|
+
* **internal:** use actions/checkout@v4 for codeflow ([#799](https://github.com/openai/openai-node/issues/799)) ([5ab7780](https://github.com/openai/openai-node/commit/5ab7780ea8889818f403a9a89ab19585a7e8972e))
|
|
150
|
+
|
|
151
|
+
## 4.38.4 (2024-04-24)
|
|
152
|
+
|
|
153
|
+
Full Changelog: [v4.38.3...v4.38.4](https://github.com/openai/openai-node/compare/v4.38.3...v4.38.4)
|
|
154
|
+
|
|
155
|
+
### Bug Fixes
|
|
156
|
+
|
|
157
|
+
* **api:** change timestamps to unix integers ([#798](https://github.com/openai/openai-node/issues/798)) ([7271a6c](https://github.com/openai/openai-node/commit/7271a6cdc7d37151d2cae18fdd20b87d97624a84))
|
|
158
|
+
* **docs:** doc improvements ([#796](https://github.com/openai/openai-node/issues/796)) ([49fcc86](https://github.com/openai/openai-node/commit/49fcc86b44958795a6f5e0901f369653dfbcc637))
|
|
159
|
+
|
|
160
|
+
## 4.38.3 (2024-04-22)
|
|
161
|
+
|
|
162
|
+
Full Changelog: [v4.38.2...v4.38.3](https://github.com/openai/openai-node/compare/v4.38.2...v4.38.3)
|
|
163
|
+
|
|
164
|
+
### Chores
|
|
165
|
+
|
|
166
|
+
* **internal:** use @swc/jest for running tests ([#793](https://github.com/openai/openai-node/issues/793)) ([8947f19](https://github.com/openai/openai-node/commit/8947f195b2dfab7ceebe1e0bb5c886e229cd541f))
|
|
167
|
+
|
|
168
|
+
## 4.38.2 (2024-04-19)
|
|
169
|
+
|
|
170
|
+
Full Changelog: [v4.38.1...v4.38.2](https://github.com/openai/openai-node/compare/v4.38.1...v4.38.2)
|
|
171
|
+
|
|
172
|
+
### Bug Fixes
|
|
173
|
+
|
|
174
|
+
* **api:** correct types for message attachment tools ([#787](https://github.com/openai/openai-node/issues/787)) ([8626884](https://github.com/openai/openai-node/commit/8626884abd2494aa081db9e50a2f268b6cebc5df))
|
|
175
|
+
|
|
176
|
+
## 4.38.1 (2024-04-18)
|
|
177
|
+
|
|
178
|
+
Full Changelog: [v4.38.0...v4.38.1](https://github.com/openai/openai-node/compare/v4.38.0...v4.38.1)
|
|
179
|
+
|
|
180
|
+
### Bug Fixes
|
|
181
|
+
|
|
182
|
+
* **api:** correct types for attachments ([#783](https://github.com/openai/openai-node/issues/783)) ([6893631](https://github.com/openai/openai-node/commit/6893631334f75e232ba130f5dd67f1230b1e5fa0))
|
|
183
|
+
|
|
184
|
+
## 4.38.0 (2024-04-18)
|
|
185
|
+
|
|
186
|
+
Full Changelog: [v4.37.1...v4.38.0](https://github.com/openai/openai-node/compare/v4.37.1...v4.38.0)
|
|
187
|
+
|
|
188
|
+
### Features
|
|
189
|
+
|
|
190
|
+
* **api:** batch list endpoint ([#781](https://github.com/openai/openai-node/issues/781)) ([d226759](https://github.com/openai/openai-node/commit/d226759164fbed33198d8bdc315c98e1052dade8))
|
|
191
|
+
|
|
192
|
+
## 4.37.1 (2024-04-17)
|
|
193
|
+
|
|
194
|
+
Full Changelog: [v4.37.0...v4.37.1](https://github.com/openai/openai-node/compare/v4.37.0...v4.37.1)
|
|
195
|
+
|
|
196
|
+
### Chores
|
|
197
|
+
|
|
198
|
+
* **api:** docs and response_format response property ([#778](https://github.com/openai/openai-node/issues/778)) ([78f5c35](https://github.com/openai/openai-node/commit/78f5c3568d95d8e854c04049dc7d5643aa49e93f))
|
|
199
|
+
|
|
200
|
+
## 4.37.0 (2024-04-17)
|
|
201
|
+
|
|
202
|
+
Full Changelog: [v4.36.0...v4.37.0](https://github.com/openai/openai-node/compare/v4.36.0...v4.37.0)
|
|
203
|
+
|
|
204
|
+
### Features
|
|
205
|
+
|
|
206
|
+
* **api:** add vector stores ([#776](https://github.com/openai/openai-node/issues/776)) ([8bb929b](https://github.com/openai/openai-node/commit/8bb929b2ee91c1bec0a00347bf4f7628652d1be3))
|
|
207
|
+
|
|
208
|
+
## 4.36.0 (2024-04-16)
|
|
209
|
+
|
|
210
|
+
Full Changelog: [v4.35.0...v4.36.0](https://github.com/openai/openai-node/compare/v4.35.0...v4.36.0)
|
|
211
|
+
|
|
212
|
+
### Features
|
|
213
|
+
|
|
214
|
+
* **client:** add header OpenAI-Project ([#772](https://github.com/openai/openai-node/issues/772)) ([bb4df37](https://github.com/openai/openai-node/commit/bb4df3722082fb44b7d4feb7a47df796149150a2))
|
|
215
|
+
* extract chat models to a named enum ([#775](https://github.com/openai/openai-node/issues/775)) ([141d2ed](https://github.com/openai/openai-node/commit/141d2ed308141dc751869353208e4d0632d3650c))
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
### Build System
|
|
219
|
+
|
|
220
|
+
* configure UTF-8 locale in devcontainer ([#774](https://github.com/openai/openai-node/issues/774)) ([bebf4f0](https://github.com/openai/openai-node/commit/bebf4f0ca1f884f8747caff0f0e065aafffde096))
|
|
221
|
+
|
|
222
|
+
## 4.35.0 (2024-04-15)
|
|
223
|
+
|
|
224
|
+
Full Changelog: [v4.34.0...v4.35.0](https://github.com/openai/openai-node/compare/v4.34.0...v4.35.0)
|
|
225
|
+
|
|
226
|
+
### Features
|
|
227
|
+
|
|
228
|
+
* **errors:** add request_id property ([#769](https://github.com/openai/openai-node/issues/769)) ([43aa6a1](https://github.com/openai/openai-node/commit/43aa6a19cfb1448903dfaddc4da3def2eda9cbab))
|
|
229
|
+
|
|
230
|
+
## 4.34.0 (2024-04-15)
|
|
231
|
+
|
|
232
|
+
Full Changelog: [v4.33.1...v4.34.0](https://github.com/openai/openai-node/compare/v4.33.1...v4.34.0)
|
|
233
|
+
|
|
234
|
+
### Features
|
|
235
|
+
|
|
236
|
+
* **api:** add batch API ([#768](https://github.com/openai/openai-node/issues/768)) ([7fe34f2](https://github.com/openai/openai-node/commit/7fe34f2d0bda9c1cb116a593f02bd0cc15a52e12))
|
|
237
|
+
* **api:** updates ([#766](https://github.com/openai/openai-node/issues/766)) ([52bcc47](https://github.com/openai/openai-node/commit/52bcc47043e4c3ffe15ae9e7ac0fa87e2493aad9))
|
|
238
|
+
|
|
239
|
+
## 4.33.1 (2024-04-12)
|
|
240
|
+
|
|
241
|
+
Full Changelog: [v4.33.0...v4.33.1](https://github.com/openai/openai-node/compare/v4.33.0...v4.33.1)
|
|
242
|
+
|
|
243
|
+
### Chores
|
|
244
|
+
|
|
245
|
+
* **internal:** formatting ([#763](https://github.com/openai/openai-node/issues/763)) ([b6acf54](https://github.com/openai/openai-node/commit/b6acf54baab7e6cbf6ce3ad1d6c70197cc0181d0))
|
|
246
|
+
* **internal:** improve ecosystem tests ([#761](https://github.com/openai/openai-node/issues/761)) ([fcf748d](https://github.com/openai/openai-node/commit/fcf748dbbd23f972ff9fd81a8b2a35232a2d6e5c))
|
|
247
|
+
|
|
248
|
+
## 4.33.0 (2024-04-05)
|
|
249
|
+
|
|
250
|
+
Full Changelog: [v4.32.2...v4.33.0](https://github.com/openai/openai-node/compare/v4.32.2...v4.33.0)
|
|
251
|
+
|
|
252
|
+
### Features
|
|
253
|
+
|
|
254
|
+
* **api:** add additional messages when creating thread run ([#759](https://github.com/openai/openai-node/issues/759)) ([f1fdb41](https://github.com/openai/openai-node/commit/f1fdb410e087f9b94faeda0558de573ec1118601))
|
|
255
|
+
|
|
256
|
+
## 4.32.2 (2024-04-04)
|
|
257
|
+
|
|
258
|
+
Full Changelog: [v4.32.1...v4.32.2](https://github.com/openai/openai-node/compare/v4.32.1...v4.32.2)
|
|
259
|
+
|
|
260
|
+
### Bug Fixes
|
|
261
|
+
|
|
262
|
+
* **streaming:** handle special line characters and fix multi-byte character decoding ([#757](https://github.com/openai/openai-node/issues/757)) ([8dcdda2](https://github.com/openai/openai-node/commit/8dcdda2b0d1d86486eea5fd47d24a8d26fde4c19))
|
|
263
|
+
* **tests:** update wrangler to v3.19.0 (CVE-2023-7080) ([#755](https://github.com/openai/openai-node/issues/755)) ([47ca41d](https://github.com/openai/openai-node/commit/47ca41da9a739b2e04b721cb1fe843e5dd152465))
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
### Chores
|
|
267
|
+
|
|
268
|
+
* **tests:** bump ecosystem tests dependencies ([#753](https://github.com/openai/openai-node/issues/753)) ([3f86ea2](https://github.com/openai/openai-node/commit/3f86ea2205c90e05bcbe582491a4bed01075a5b1))
|
|
269
|
+
|
|
270
|
+
## 4.32.1 (2024-04-02)
|
|
271
|
+
|
|
272
|
+
Full Changelog: [v4.32.0...v4.32.1](https://github.com/openai/openai-node/compare/v4.32.0...v4.32.1)
|
|
273
|
+
|
|
274
|
+
### Chores
|
|
275
|
+
|
|
276
|
+
* **deps:** bump yarn to v1.22.22 ([#751](https://github.com/openai/openai-node/issues/751)) ([5b41d10](https://github.com/openai/openai-node/commit/5b41d1077f219b8feb7557cfab98caf7b5de560d))
|
|
277
|
+
|
|
278
|
+
## 4.32.0 (2024-04-01)
|
|
279
|
+
|
|
280
|
+
Full Changelog: [v4.31.0...v4.32.0](https://github.com/openai/openai-node/compare/v4.31.0...v4.32.0)
|
|
281
|
+
|
|
282
|
+
### Features
|
|
283
|
+
|
|
284
|
+
* **api:** add support for filtering messages by run_id ([#747](https://github.com/openai/openai-node/issues/747)) ([9a397ac](https://github.com/openai/openai-node/commit/9a397acffa9f10c3f48e86e3bdb3851770f87b42))
|
|
285
|
+
* **api:** run polling helpers ([#749](https://github.com/openai/openai-node/issues/749)) ([02920ae](https://github.com/openai/openai-node/commit/02920ae082480fc7a7ffe9fa583d053a40dc7120))
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
### Chores
|
|
289
|
+
|
|
290
|
+
* **deps:** remove unused dependency digest-fetch ([#748](https://github.com/openai/openai-node/issues/748)) ([5376837](https://github.com/openai/openai-node/commit/537683734d39dd956a7dcef4339c1167ce6fe13c))
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
### Documentation
|
|
294
|
+
|
|
295
|
+
* **readme:** change undocumented params wording ([#744](https://github.com/openai/openai-node/issues/744)) ([8796691](https://github.com/openai/openai-node/commit/87966911045275db86844dfdcde59653edaef264))
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
### Refactors
|
|
299
|
+
|
|
300
|
+
* rename createAndStream to stream ([02920ae](https://github.com/openai/openai-node/commit/02920ae082480fc7a7ffe9fa583d053a40dc7120))
|
|
301
|
+
|
|
302
|
+
## 4.31.0 (2024-03-30)
|
|
303
|
+
|
|
304
|
+
Full Changelog: [v4.30.0...v4.31.0](https://github.com/openai/openai-node/compare/v4.30.0...v4.31.0)
|
|
305
|
+
|
|
306
|
+
### Features
|
|
307
|
+
|
|
308
|
+
* **api:** adding temperature parameter ([#742](https://github.com/openai/openai-node/issues/742)) ([b173b05](https://github.com/openai/openai-node/commit/b173b05eb52266d8f2c835ec4ed71cba8cdc609b))
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
### Bug Fixes
|
|
312
|
+
|
|
313
|
+
* **streaming:** trigger all event handlers with fromReadableStream ([#741](https://github.com/openai/openai-node/issues/741)) ([7b1e593](https://github.com/openai/openai-node/commit/7b1e5937d97b309ed51928b4388dcde74abda8dc))
|
|
314
|
+
|
|
315
|
+
## 4.30.0 (2024-03-28)
|
|
316
|
+
|
|
317
|
+
Full Changelog: [v4.29.2...v4.30.0](https://github.com/openai/openai-node/compare/v4.29.2...v4.30.0)
|
|
318
|
+
|
|
319
|
+
### Features
|
|
320
|
+
|
|
321
|
+
* assistant fromReadableStream ([#738](https://github.com/openai/openai-node/issues/738)) ([8f4ba18](https://github.com/openai/openai-node/commit/8f4ba18268797d6c54c393d701b13c7ff2aa71bc))
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
### Bug Fixes
|
|
325
|
+
|
|
326
|
+
* **client:** correctly send deno version header ([#736](https://github.com/openai/openai-node/issues/736)) ([b7ea175](https://github.com/openai/openai-node/commit/b7ea175b2854909de77b920dd25613f1d2daefd6))
|
|
327
|
+
* **example:** correcting example ([#739](https://github.com/openai/openai-node/issues/739)) ([a819551](https://github.com/openai/openai-node/commit/a81955175da24e196490a38850bbf6f9b6779ea8))
|
|
328
|
+
* handle process.env being undefined in debug func ([#733](https://github.com/openai/openai-node/issues/733)) ([2baa149](https://github.com/openai/openai-node/commit/2baa1491f7834f779ca49c3027d2344ead412dd2))
|
|
329
|
+
* **internal:** make toFile use input file's options ([#727](https://github.com/openai/openai-node/issues/727)) ([15880d7](https://github.com/openai/openai-node/commit/15880d77b6c1cf58a6b9cfdbf7ae4442cdbddbd6))
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
### Chores
|
|
333
|
+
|
|
334
|
+
* **internal:** add type ([#737](https://github.com/openai/openai-node/issues/737)) ([18c1989](https://github.com/openai/openai-node/commit/18c19891f783019517d7961fe03c4d98de0fcf93))
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
### Documentation
|
|
338
|
+
|
|
339
|
+
* **readme:** consistent use of sentence case in headings ([#729](https://github.com/openai/openai-node/issues/729)) ([7e515fd](https://github.com/openai/openai-node/commit/7e515fde433ebfb7871d75d53915eef05a08a916))
|
|
340
|
+
* **readme:** document how to make undocumented requests ([#730](https://github.com/openai/openai-node/issues/730)) ([a06d861](https://github.com/openai/openai-node/commit/a06d861a015eeee411fa2c6ed9bf3000313cfc03))
|
|
341
|
+
|
|
342
|
+
## 4.29.2 (2024-03-19)
|
|
343
|
+
|
|
344
|
+
Full Changelog: [v4.29.1...v4.29.2](https://github.com/openai/openai-node/compare/v4.29.1...v4.29.2)
|
|
345
|
+
|
|
346
|
+
### Chores
|
|
347
|
+
|
|
348
|
+
* **internal:** update generated pragma comment ([#724](https://github.com/openai/openai-node/issues/724)) ([139e205](https://github.com/openai/openai-node/commit/139e205ed1ed30cb1df982d852a093dcea945aba))
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
### Documentation
|
|
352
|
+
|
|
353
|
+
* assistant improvements ([#725](https://github.com/openai/openai-node/issues/725)) ([6a2c41b](https://github.com/openai/openai-node/commit/6a2c41b0ce833eba0cdea6a7d221697f3be26abb))
|
|
354
|
+
* fix typo in CONTRIBUTING.md ([#722](https://github.com/openai/openai-node/issues/722)) ([05ff8f7](https://github.com/openai/openai-node/commit/05ff8f7671fe6ce5d9517034f76a166a0bd27803))
|
|
355
|
+
|
|
356
|
+
## 4.29.1 (2024-03-15)
|
|
357
|
+
|
|
358
|
+
Full Changelog: [v4.29.0...v4.29.1](https://github.com/openai/openai-node/compare/v4.29.0...v4.29.1)
|
|
359
|
+
|
|
360
|
+
### Documentation
|
|
361
|
+
|
|
362
|
+
* **readme:** assistant streaming ([#719](https://github.com/openai/openai-node/issues/719)) ([bc9a1ca](https://github.com/openai/openai-node/commit/bc9a1ca308020a88c29d409edc06cdfca8cbf8f5))
|
|
363
|
+
|
|
364
|
+
## 4.29.0 (2024-03-13)
|
|
365
|
+
|
|
366
|
+
Full Changelog: [v4.28.5...v4.29.0](https://github.com/openai/openai-node/compare/v4.28.5...v4.29.0)
|
|
367
|
+
|
|
368
|
+
### Features
|
|
369
|
+
|
|
370
|
+
* **assistants:** add support for streaming ([#714](https://github.com/openai/openai-node/issues/714)) ([7d27d28](https://github.com/openai/openai-node/commit/7d27d286876d0a575d91a4752f401126fe93d2a3))
|
|
371
|
+
|
|
372
|
+
## 4.28.5 (2024-03-13)
|
|
373
|
+
|
|
374
|
+
Full Changelog: [v4.28.4...v4.28.5](https://github.com/openai/openai-node/compare/v4.28.4...v4.28.5)
|
|
375
|
+
|
|
376
|
+
### Bug Fixes
|
|
377
|
+
|
|
378
|
+
* **ChatCompletionStream:** abort on async iterator break and handle errors ([#699](https://github.com/openai/openai-node/issues/699)) ([ac417a2](https://github.com/openai/openai-node/commit/ac417a2db31919d2b52f2eb2e38f9c67a8f73254))
|
|
379
|
+
* **streaming:** correctly handle trailing new lines in byte chunks ([#708](https://github.com/openai/openai-node/issues/708)) ([4753be2](https://github.com/openai/openai-node/commit/4753be272b1d1dade7a769cf350b829fc639f36e))
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Chores
|
|
383
|
+
|
|
384
|
+
* **api:** update docs ([#703](https://github.com/openai/openai-node/issues/703)) ([e1db98b](https://github.com/openai/openai-node/commit/e1db98bef29d200e2e401e3f5d7b2db6839c7836))
|
|
385
|
+
* **docs:** mention install from git repo ([#700](https://github.com/openai/openai-node/issues/700)) ([c081bdb](https://github.com/openai/openai-node/commit/c081bdbb55585e63370496d324dc6f94d86424d1))
|
|
386
|
+
* fix error handler in readme ([#704](https://github.com/openai/openai-node/issues/704)) ([4ff790a](https://github.com/openai/openai-node/commit/4ff790a67cf876191e04ad0e369e447e080b78a7))
|
|
387
|
+
* **internal:** add explicit type annotation to decoder ([#712](https://github.com/openai/openai-node/issues/712)) ([d728e99](https://github.com/openai/openai-node/commit/d728e9923554e4c72c9efa3bd528561400d50ad8))
|
|
388
|
+
* **types:** fix accidental exposure of Buffer type to cloudflare ([#709](https://github.com/openai/openai-node/issues/709)) ([0323ecb](https://github.com/openai/openai-node/commit/0323ecb98ddbd8910fc5719c8bab5175b945d2ab))
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
### Documentation
|
|
392
|
+
|
|
393
|
+
* **contributing:** improve wording ([#696](https://github.com/openai/openai-node/issues/696)) ([940d569](https://github.com/openai/openai-node/commit/940d5695f4cacddbb58e3bfc50fec28c468c7e63))
|
|
394
|
+
* **readme:** fix https proxy example ([#705](https://github.com/openai/openai-node/issues/705)) ([d144789](https://github.com/openai/openai-node/commit/d1447890a556d37928b628f6449bb80de224d207))
|
|
395
|
+
* **readme:** fix typo in custom fetch implementation ([#698](https://github.com/openai/openai-node/issues/698)) ([64041fd](https://github.com/openai/openai-node/commit/64041fd33da569eccae64afe4e50ee803017b20b))
|
|
396
|
+
* remove extraneous --save and yarn install instructions ([#710](https://github.com/openai/openai-node/issues/710)) ([8ec216d](https://github.com/openai/openai-node/commit/8ec216d6b72ee4d67e26786f06c93af18d042117))
|
|
397
|
+
* use [@deprecated](https://github.com/deprecated) decorator for deprecated params ([#711](https://github.com/openai/openai-node/issues/711)) ([4688ef4](https://github.com/openai/openai-node/commit/4688ef4b36e9f383a3abf6cdb31d498163a7bb9e))
|
|
398
|
+
|
|
399
|
+
## 4.28.4 (2024-02-28)
|
|
400
|
+
|
|
401
|
+
Full Changelog: [v4.28.3...v4.28.4](https://github.com/openai/openai-node/compare/v4.28.3...v4.28.4)
|
|
402
|
+
|
|
403
|
+
### Features
|
|
404
|
+
|
|
405
|
+
* **api:** add wav and pcm to response_format ([#691](https://github.com/openai/openai-node/issues/691)) ([b1c6171](https://github.com/openai/openai-node/commit/b1c61711961a62a4d7b47909a68ecd65231a66af))
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
### Chores
|
|
409
|
+
|
|
410
|
+
* **ci:** update actions/setup-node action to v4 ([#685](https://github.com/openai/openai-node/issues/685)) ([f2704d5](https://github.com/openai/openai-node/commit/f2704d5f1580c0f1d31584ef88702cde8f6804d4))
|
|
411
|
+
* **internal:** fix ecosystem tests ([#693](https://github.com/openai/openai-node/issues/693)) ([616624d](https://github.com/openai/openai-node/commit/616624d3d9fd10ce254ce0d435b2b73ed11679f2))
|
|
412
|
+
* **types:** extract run status to a named type ([#686](https://github.com/openai/openai-node/issues/686)) ([b3b3b8e](https://github.com/openai/openai-node/commit/b3b3b8ea20e0f311d3bd53dfd22ccc04f5dce5f7))
|
|
413
|
+
* update @types/react to 18.2.58, @types/react-dom to 18.2.19 ([#688](https://github.com/openai/openai-node/issues/688)) ([2a0d0b1](https://github.com/openai/openai-node/commit/2a0d0b1cb197eef25e42bbba88ee90c37d623f24))
|
|
414
|
+
* update dependency @types/node to v20.11.20 ([#690](https://github.com/openai/openai-node/issues/690)) ([4ca005b](https://github.com/openai/openai-node/commit/4ca005be082d6c50fe95da6148896b62080bfe07))
|
|
415
|
+
* update dependency @types/ws to v8.5.10 ([#683](https://github.com/openai/openai-node/issues/683)) ([a617268](https://github.com/openai/openai-node/commit/a6172683a3390422984ad282ac4940781493e772))
|
|
416
|
+
* update dependency next to v13.5.6 ([#689](https://github.com/openai/openai-node/issues/689)) ([abb3b66](https://github.com/openai/openai-node/commit/abb3b6674b8f9f8ff9c2cc61629a31883ae4d8c8))
|
|
417
|
+
|
|
418
|
+
## 4.28.3 (2024-02-20)
|
|
419
|
+
|
|
420
|
+
Full Changelog: [v4.28.2...v4.28.3](https://github.com/openai/openai-node/compare/v4.28.2...v4.28.3)
|
|
421
|
+
|
|
422
|
+
### Bug Fixes
|
|
423
|
+
|
|
424
|
+
* **ci:** revert "move github release logic to github app" ([#680](https://github.com/openai/openai-node/issues/680)) ([8b4009a](https://github.com/openai/openai-node/commit/8b4009af05a2e0824f99d3cf8cd9063f234ae470))
|
|
425
|
+
|
|
426
|
+
## 4.28.2 (2024-02-19)
|
|
427
|
+
|
|
428
|
+
Full Changelog: [v4.28.1...v4.28.2](https://github.com/openai/openai-node/compare/v4.28.1...v4.28.2)
|
|
429
|
+
|
|
430
|
+
### Bug Fixes
|
|
431
|
+
|
|
432
|
+
* **api:** remove non-GA instance_id param ([#677](https://github.com/openai/openai-node/issues/677)) ([4d0d4da](https://github.com/openai/openai-node/commit/4d0d4daf3bfca0089c5258a136542513e6b372e6))
|
|
433
|
+
|
|
434
|
+
## 4.28.1 (2024-02-19)
|
|
435
|
+
|
|
436
|
+
Full Changelog: [v4.28.0...v4.28.1](https://github.com/openai/openai-node/compare/v4.28.0...v4.28.1)
|
|
437
|
+
|
|
438
|
+
### Chores
|
|
439
|
+
|
|
440
|
+
* **ci:** move github release logic to github app ([#671](https://github.com/openai/openai-node/issues/671)) ([ecca6bc](https://github.com/openai/openai-node/commit/ecca6bc2eea391ee53f1a1d6cac9665199447ae0))
|
|
441
|
+
* **internal:** refactor release environment script ([#674](https://github.com/openai/openai-node/issues/674)) ([27d3770](https://github.com/openai/openai-node/commit/27d37705d17e05c3761ccefcf09c4e2018eb5772))
|
|
442
|
+
|
|
443
|
+
## 4.28.0 (2024-02-13)
|
|
444
|
+
|
|
445
|
+
Full Changelog: [v4.27.1...v4.28.0](https://github.com/openai/openai-node/compare/v4.27.1...v4.28.0)
|
|
446
|
+
|
|
447
|
+
### Features
|
|
448
|
+
|
|
449
|
+
* **api:** updates ([#669](https://github.com/openai/openai-node/issues/669)) ([e1900f9](https://github.com/openai/openai-node/commit/e1900f97ee3f4758d47a7eb4659e30abe3750c99))
|
|
450
|
+
|
|
451
|
+
## 4.27.1 (2024-02-12)
|
|
452
|
+
|
|
453
|
+
Full Changelog: [v4.27.0...v4.27.1](https://github.com/openai/openai-node/compare/v4.27.0...v4.27.1)
|
|
454
|
+
|
|
455
|
+
## 4.27.0 (2024-02-08)
|
|
456
|
+
|
|
457
|
+
Full Changelog: [v4.26.1...v4.27.0](https://github.com/openai/openai-node/compare/v4.26.1...v4.27.0)
|
|
458
|
+
|
|
459
|
+
### Features
|
|
460
|
+
|
|
461
|
+
* **api:** add `timestamp_granularities`, add `gpt-3.5-turbo-0125` model ([#661](https://github.com/openai/openai-node/issues/661)) ([5016806](https://github.com/openai/openai-node/commit/50168066862f66b529bae29f4564741300303246))
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
### Chores
|
|
465
|
+
|
|
466
|
+
* **internal:** fix retry mechanism for ecosystem-test ([#663](https://github.com/openai/openai-node/issues/663)) ([0eb7ed5](https://github.com/openai/openai-node/commit/0eb7ed5ca3f7c7b29c316fc7d725d834cee73989))
|
|
467
|
+
* respect `application/vnd.api+json` content-type header ([#664](https://github.com/openai/openai-node/issues/664)) ([f4fad54](https://github.com/openai/openai-node/commit/f4fad549c5c366d8dd8b936b7699639b895e82a1))
|
|
468
|
+
|
|
469
|
+
## 4.26.1 (2024-02-05)
|
|
470
|
+
|
|
471
|
+
Full Changelog: [v4.26.0...v4.26.1](https://github.com/openai/openai-node/compare/v4.26.0...v4.26.1)
|
|
472
|
+
|
|
473
|
+
### Chores
|
|
474
|
+
|
|
475
|
+
* **internal:** enable building when git installed ([#657](https://github.com/openai/openai-node/issues/657)) ([8c80a7d](https://github.com/openai/openai-node/commit/8c80a7d6d36155901a19d1f9cd1fec17b89e261e))
|
|
476
|
+
* **internal:** re-order pagination import ([#656](https://github.com/openai/openai-node/issues/656)) ([21ae54e](https://github.com/openai/openai-node/commit/21ae54ea2cc2779e440909782a6ac8b70f88ec1f))
|
|
477
|
+
* **internal:** support pre-release versioning ([#653](https://github.com/openai/openai-node/issues/653)) ([0c3859f](https://github.com/openai/openai-node/commit/0c3859f88164ae3eb6ec8c29e8889a50861cb35b))
|
|
478
|
+
* **test:** add delay between ecosystem tests retry ([#651](https://github.com/openai/openai-node/issues/651)) ([6a4cc5c](https://github.com/openai/openai-node/commit/6a4cc5cea36ae408c8c1eb2ea0ea02f96ffb77b7))
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
### Documentation
|
|
482
|
+
|
|
483
|
+
* add a CONTRIBUTING.md ([#659](https://github.com/openai/openai-node/issues/659)) ([8ea58b0](https://github.com/openai/openai-node/commit/8ea58b0b9e7382a3b3af852a9a3a288a485ad33a))
|
|
484
|
+
|
|
485
|
+
## 4.26.0 (2024-01-25)
|
|
486
|
+
|
|
487
|
+
Full Changelog: [v4.25.0...v4.26.0](https://github.com/openai/openai-node/compare/v4.25.0...v4.26.0)
|
|
488
|
+
|
|
489
|
+
### Features
|
|
490
|
+
|
|
491
|
+
* **api:** add text embeddings dimensions param ([#650](https://github.com/openai/openai-node/issues/650)) ([1b5a977](https://github.com/openai/openai-node/commit/1b5a977d0eef7f5cf97daf27333cbbeb6bb479f3))
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
### Chores
|
|
495
|
+
|
|
496
|
+
* **internal:** add internal helpers & improve build scripts ([#643](https://github.com/openai/openai-node/issues/643)) ([9392f50](https://github.com/openai/openai-node/commit/9392f50e47f26b16632c9eb12187ea7f8a565e09))
|
|
497
|
+
* **internal:** adjust ecosystem-tests logging in CI ([#646](https://github.com/openai/openai-node/issues/646)) ([156084b](https://github.com/openai/openai-node/commit/156084b8734194a5856612378115b948c82ec6e4))
|
|
498
|
+
* **internal:** don't re-export streaming type ([#648](https://github.com/openai/openai-node/issues/648)) ([4c4be94](https://github.com/openai/openai-node/commit/4c4be945fa3f54036183e2d0877060db47ea564b))
|
|
499
|
+
* **internal:** fix binary files ([#645](https://github.com/openai/openai-node/issues/645)) ([e1fbc39](https://github.com/openai/openai-node/commit/e1fbc396f4d1dd8ba980c25ba03b670dfed887a0))
|
|
500
|
+
* **internal:** minor streaming updates ([#647](https://github.com/openai/openai-node/issues/647)) ([2f073e4](https://github.com/openai/openai-node/commit/2f073e4e6c9cd0ff3ad434907da710704765a005))
|
|
501
|
+
* **internal:** pin deno version ([#649](https://github.com/openai/openai-node/issues/649)) ([7e4b903](https://github.com/openai/openai-node/commit/7e4b9039320e4ccbafb45f57dce273bedc9b7cb3))
|
|
502
|
+
|
|
503
|
+
## 4.25.0 (2024-01-21)
|
|
504
|
+
|
|
505
|
+
Full Changelog: [v4.24.7...v4.25.0](https://github.com/openai/openai-node/compare/v4.24.7...v4.25.0)
|
|
506
|
+
|
|
507
|
+
### Features
|
|
508
|
+
|
|
509
|
+
* **api:** add usage to runs and run steps ([#640](https://github.com/openai/openai-node/issues/640)) ([3caa416](https://github.com/openai/openai-node/commit/3caa4166b8abb5bffb4c8be1495834b7f16af32d))
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
### Bug Fixes
|
|
513
|
+
|
|
514
|
+
* allow body type in RequestOptions to be null ([#637](https://github.com/openai/openai-node/issues/637)) ([c4f8a36](https://github.com/openai/openai-node/commit/c4f8a3698dc1d80439131c5097975d6a5db1b4e2))
|
|
515
|
+
* handle system_fingerprint in streaming helpers ([#636](https://github.com/openai/openai-node/issues/636)) ([f273530](https://github.com/openai/openai-node/commit/f273530ac491300842aef463852821a1a27805fb))
|
|
516
|
+
* **types:** accept undefined for optional client options ([#635](https://github.com/openai/openai-node/issues/635)) ([e48cd57](https://github.com/openai/openai-node/commit/e48cd57931cd0e81a77b55653cb1f663111dd733))
|
|
517
|
+
|
|
518
|
+
|
|
519
|
+
### Chores
|
|
520
|
+
|
|
521
|
+
* **internal:** debug logging for retries; speculative retry-after-ms support ([#633](https://github.com/openai/openai-node/issues/633)) ([fd64971](https://github.com/openai/openai-node/commit/fd64971612d1d7fcbd8a63885d333485bff68ab1))
|
|
522
|
+
* **internal:** update comment ([#631](https://github.com/openai/openai-node/issues/631)) ([e109d40](https://github.com/openai/openai-node/commit/e109d40a5c02c5bf4586e54d92bf0e355d254c1b))
|
|
523
|
+
|
|
524
|
+
## 4.24.7 (2024-01-13)
|
|
525
|
+
|
|
526
|
+
Full Changelog: [v4.24.6...v4.24.7](https://github.com/openai/openai-node/compare/v4.24.6...v4.24.7)
|
|
527
|
+
|
|
528
|
+
### Chores
|
|
529
|
+
|
|
530
|
+
* **ecosystem-tests:** fix flaky vercel-edge, cloudflare-worker, and deno tests ([#626](https://github.com/openai/openai-node/issues/626)) ([ae412a5](https://github.com/openai/openai-node/commit/ae412a5f12e701e07e71bd9791c55a56858e8383))
|
|
531
|
+
* **ecosystem-tests:** fix typo in deno test ([#628](https://github.com/openai/openai-node/issues/628)) ([048ec94](https://github.com/openai/openai-node/commit/048ec943f8d12acba9829c35ebf0b2d3f24930c8))
|
|
532
|
+
|
|
533
|
+
## 4.24.6 (2024-01-12)
|
|
534
|
+
|
|
535
|
+
Full Changelog: [v4.24.5...v4.24.6](https://github.com/openai/openai-node/compare/v4.24.5...v4.24.6)
|
|
536
|
+
|
|
537
|
+
### Chores
|
|
538
|
+
|
|
539
|
+
* **ecosystem-tests:** fix flaky tests and remove fine tuning calls ([#623](https://github.com/openai/openai-node/issues/623)) ([258d79f](https://github.com/openai/openai-node/commit/258d79f52bb31f4f3723f6f4b97ebe8f3fa187bd))
|
|
540
|
+
* **ecosystem-tests:** fix flaky tests and remove fine tuning calls ([#625](https://github.com/openai/openai-node/issues/625)) ([58e5fd8](https://github.com/openai/openai-node/commit/58e5fd8f27052be6ac9587256b161f4bf3a3805f))
|
|
541
|
+
|
|
542
|
+
## 4.24.5 (2024-01-12)
|
|
543
|
+
|
|
544
|
+
Full Changelog: [v4.24.4...v4.24.5](https://github.com/openai/openai-node/compare/v4.24.4...v4.24.5)
|
|
545
|
+
|
|
546
|
+
### Refactors
|
|
547
|
+
|
|
548
|
+
* **api:** remove deprecated endpoints ([#621](https://github.com/openai/openai-node/issues/621)) ([2054d71](https://github.com/openai/openai-node/commit/2054d71e6b0d407229a4c5aecd75e38c336c2c02))
|
|
549
|
+
|
|
550
|
+
## 4.24.4 (2024-01-11)
|
|
551
|
+
|
|
552
|
+
Full Changelog: [v4.24.3...v4.24.4](https://github.com/openai/openai-node/compare/v4.24.3...v4.24.4)
|
|
553
|
+
|
|
554
|
+
### Chores
|
|
555
|
+
|
|
556
|
+
* **internal:** narrow type into stringifyQuery ([#619](https://github.com/openai/openai-node/issues/619)) ([88fb9cd](https://github.com/openai/openai-node/commit/88fb9cd1bb415850b0b4868944617282d0b92e2a))
|
|
557
|
+
|
|
558
|
+
## 4.24.3 (2024-01-10)
|
|
559
|
+
|
|
560
|
+
Full Changelog: [v4.24.2...v4.24.3](https://github.com/openai/openai-node/compare/v4.24.2...v4.24.3)
|
|
561
|
+
|
|
562
|
+
### Bug Fixes
|
|
563
|
+
|
|
564
|
+
* use default base url if BASE_URL env var is blank ([#615](https://github.com/openai/openai-node/issues/615)) ([a27ad3d](https://github.com/openai/openai-node/commit/a27ad3d4e06f2202daa169668d0e7d89e87a38a7))
|
|
565
|
+
|
|
566
|
+
## 4.24.2 (2024-01-08)
|
|
567
|
+
|
|
568
|
+
Full Changelog: [v4.24.1...v4.24.2](https://github.com/openai/openai-node/compare/v4.24.1...v4.24.2)
|
|
569
|
+
|
|
570
|
+
### Bug Fixes
|
|
571
|
+
|
|
572
|
+
* **headers:** always send lowercase headers and strip undefined (BREAKING in rare cases) ([#608](https://github.com/openai/openai-node/issues/608)) ([4ea159f](https://github.com/openai/openai-node/commit/4ea159f0aa9a1f4c365c74ee726714fe692ddf9f))
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
### Chores
|
|
576
|
+
|
|
577
|
+
* add .keep files for examples and custom code directories ([#612](https://github.com/openai/openai-node/issues/612)) ([5e0f733](https://github.com/openai/openai-node/commit/5e0f733d3cd3c8e6d41659141168cd0708e017a3))
|
|
578
|
+
* **internal:** bump license ([#605](https://github.com/openai/openai-node/issues/605)) ([045ee74](https://github.com/openai/openai-node/commit/045ee74fd3ffba9e6d1301fe1ffd8bd3c63720a2))
|
|
579
|
+
* **internal:** improve type signatures ([#609](https://github.com/openai/openai-node/issues/609)) ([e1ccc82](https://github.com/openai/openai-node/commit/e1ccc82e4991262a631dcffa4d09bdc553e50fbb))
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
### Documentation
|
|
583
|
+
|
|
584
|
+
* fix docstring typos ([#600](https://github.com/openai/openai-node/issues/600)) ([1934fa1](https://github.com/openai/openai-node/commit/1934fa15f654ea89e226457f76febe6015616f6c))
|
|
585
|
+
* improve audio example to show how to stream to a file ([#598](https://github.com/openai/openai-node/issues/598)) ([e950ad9](https://github.com/openai/openai-node/commit/e950ad969e845d608ed71bd3e3095cd6c941d93d))
|
|
586
|
+
|
|
587
|
+
## 4.24.1 (2023-12-22)
|
|
588
|
+
|
|
589
|
+
Full Changelog: [v4.24.0...v4.24.1](https://github.com/openai/openai-node/compare/v4.24.0...v4.24.1)
|
|
590
|
+
|
|
591
|
+
### Bug Fixes
|
|
592
|
+
|
|
593
|
+
* **pagination:** correct type annotation object field ([#590](https://github.com/openai/openai-node/issues/590)) ([4066eda](https://github.com/openai/openai-node/commit/4066edad4b5305e82e610f44f4720843f2b69d39))
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
### Documentation
|
|
597
|
+
|
|
598
|
+
* **messages:** improvements to helpers reference + typos ([#595](https://github.com/openai/openai-node/issues/595)) ([96a59b9](https://github.com/openai/openai-node/commit/96a59b91c424db67b8a5bdb7cab5da68c57282d4))
|
|
599
|
+
* reformat README.md ([#592](https://github.com/openai/openai-node/issues/592)) ([8ffc7f8](https://github.com/openai/openai-node/commit/8ffc7f876cc8f4b7afaf68a37f94f826ef22a6b8))
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
### Refactors
|
|
603
|
+
|
|
604
|
+
* write jest config in typescript ([#588](https://github.com/openai/openai-node/issues/588)) ([eb6ceeb](https://github.com/openai/openai-node/commit/eb6ceebf90ba45ec5b803f32b9b080829f6a973a))
|
|
605
|
+
|
|
606
|
+
## 4.24.0 (2023-12-19)
|
|
607
|
+
|
|
608
|
+
Full Changelog: [v4.23.0...v4.24.0](https://github.com/openai/openai-node/compare/v4.23.0...v4.24.0)
|
|
609
|
+
|
|
610
|
+
### Features
|
|
611
|
+
|
|
612
|
+
* **api:** add additional instructions for runs ([#586](https://github.com/openai/openai-node/issues/586)) ([401d93e](https://github.com/openai/openai-node/commit/401d93ea39fe0e90088799858299322035c0a7e8))
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
### Chores
|
|
616
|
+
|
|
617
|
+
* **deps:** update dependency start-server-and-test to v2.0.3 ([#580](https://github.com/openai/openai-node/issues/580)) ([8e1aca1](https://github.com/openai/openai-node/commit/8e1aca1f8be6e583483919ed9ef9b04fab076066))
|
|
618
|
+
* **deps:** update dependency ts-jest to v29.1.1 ([#578](https://github.com/openai/openai-node/issues/578)) ([a6edb7b](https://github.com/openai/openai-node/commit/a6edb7bc3cfc447d0c55ae23cc1c2219105d3666))
|
|
619
|
+
* **deps:** update jest ([#582](https://github.com/openai/openai-node/issues/582)) ([e49e471](https://github.com/openai/openai-node/commit/e49e471ec7a136f2cbaf82551ccaaea366c87a91))
|
|
620
|
+
* **internal:** bump deps ([#583](https://github.com/openai/openai-node/issues/583)) ([2e07b4c](https://github.com/openai/openai-node/commit/2e07b4c66ab1fdbb353fdd00994e293f93e981db))
|
|
621
|
+
* **internal:** update deps ([#581](https://github.com/openai/openai-node/issues/581)) ([7b690dc](https://github.com/openai/openai-node/commit/7b690dca67ee8c3b0a89caf7f786ede5dc612a76))
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
### Documentation
|
|
625
|
+
|
|
626
|
+
* upgrade models in examples to latest version ([#585](https://github.com/openai/openai-node/issues/585)) ([60101a4](https://github.com/openai/openai-node/commit/60101a4117b1a8223d09fb9fe21d89af32431939))
|
|
627
|
+
|
|
628
|
+
## 4.23.0 (2023-12-17)
|
|
629
|
+
|
|
630
|
+
Full Changelog: [v4.22.1...v4.23.0](https://github.com/openai/openai-node/compare/v4.22.1...v4.23.0)
|
|
631
|
+
|
|
632
|
+
### Features
|
|
633
|
+
|
|
634
|
+
* **api:** add token logprobs to chat completions ([#576](https://github.com/openai/openai-node/issues/576)) ([8d4292e](https://github.com/openai/openai-node/commit/8d4292e6358920b2c9d8df49c6a154231c468512))
|
|
635
|
+
|
|
636
|
+
|
|
637
|
+
### Chores
|
|
638
|
+
|
|
639
|
+
* **ci:** run release workflow once per day ([#574](https://github.com/openai/openai-node/issues/574)) ([529f09f](https://github.com/openai/openai-node/commit/529f09f827a675d6e851590acff4e6f4f2af2d26))
|
|
640
|
+
|
|
641
|
+
## 4.22.1 (2023-12-15)
|
|
642
|
+
|
|
643
|
+
Full Changelog: [v4.22.0...v4.22.1](https://github.com/openai/openai-node/compare/v4.22.0...v4.22.1)
|
|
644
|
+
|
|
645
|
+
### Chores
|
|
646
|
+
|
|
647
|
+
* update dependencies ([#572](https://github.com/openai/openai-node/issues/572)) ([a51e620](https://github.com/openai/openai-node/commit/a51e62065224a516b17dd850ae564f5436d8db52))
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
### Documentation
|
|
651
|
+
|
|
652
|
+
* replace runFunctions with runTools in readme ([#570](https://github.com/openai/openai-node/issues/570)) ([c3b9ad5](https://github.com/openai/openai-node/commit/c3b9ad58e5f74d3339889aeb1d758c8c18f54de7))
|
|
653
|
+
|
|
654
|
+
## 4.22.0 (2023-12-15)
|
|
655
|
+
|
|
656
|
+
Full Changelog: [v4.21.0...v4.22.0](https://github.com/openai/openai-node/compare/v4.21.0...v4.22.0)
|
|
657
|
+
|
|
658
|
+
### Features
|
|
659
|
+
|
|
660
|
+
* **api:** add optional `name` argument + improve docs ([#569](https://github.com/openai/openai-node/issues/569)) ([3b68ace](https://github.com/openai/openai-node/commit/3b68ace533976aedbf642d9b018d0de8d9a8bb88))
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
### Chores
|
|
664
|
+
|
|
665
|
+
* update prettier ([#567](https://github.com/openai/openai-node/issues/567)) ([83dec2a](https://github.com/openai/openai-node/commit/83dec2af62c481d7de16d8a3644aa239ded9e30c))
|
|
666
|
+
|
|
667
|
+
## 4.21.0 (2023-12-11)
|
|
668
|
+
|
|
669
|
+
Full Changelog: [v4.20.1...v4.21.0](https://github.com/openai/openai-node/compare/v4.20.1...v4.21.0)
|
|
670
|
+
|
|
671
|
+
### Features
|
|
672
|
+
|
|
673
|
+
* **client:** support reading the base url from an env variable ([#547](https://github.com/openai/openai-node/issues/547)) ([06fb68d](https://github.com/openai/openai-node/commit/06fb68de1ff80983e349b6715d1037e2072c8dd4))
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
### Bug Fixes
|
|
677
|
+
|
|
678
|
+
* correct some runTools behavior and deprecate runFunctions ([#562](https://github.com/openai/openai-node/issues/562)) ([f5cdd0f](https://github.com/openai/openai-node/commit/f5cdd0f704d3d075cdfc5bc2df1f7a8bae5cd9f1))
|
|
679
|
+
* prevent 400 when using runTools/runFunctions with Azure OpenAI API ([#544](https://github.com/openai/openai-node/issues/544)) ([735d9b8](https://github.com/openai/openai-node/commit/735d9b86acdc067e1ee6ebe1ea50de2955431050))
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
### Documentation
|
|
683
|
+
|
|
684
|
+
* **readme:** update example snippets ([#546](https://github.com/openai/openai-node/issues/546)) ([566d290](https://github.com/openai/openai-node/commit/566d290006920f536788bb77f4d24a6906e2971f))
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
### Build System
|
|
688
|
+
|
|
689
|
+
* specify `packageManager: yarn` ([#561](https://github.com/openai/openai-node/issues/561)) ([935b898](https://github.com/openai/openai-node/commit/935b8983c74f7b03b67d22f4d194989838f963f3))
|
|
690
|
+
|
|
691
|
+
## 4.20.1 (2023-11-24)
|
|
692
|
+
|
|
693
|
+
Full Changelog: [v4.20.0...v4.20.1](https://github.com/openai/openai-node/compare/v4.20.0...v4.20.1)
|
|
694
|
+
|
|
695
|
+
### Chores
|
|
696
|
+
|
|
697
|
+
* **internal:** remove file import and conditionally run prepare ([#533](https://github.com/openai/openai-node/issues/533)) ([48cb729](https://github.com/openai/openai-node/commit/48cb729bfc484ce3d04273be417b307a0d20644f))
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
### Documentation
|
|
701
|
+
|
|
702
|
+
* **readme:** fix typo and add examples link ([#529](https://github.com/openai/openai-node/issues/529)) ([cf959b1](https://github.com/openai/openai-node/commit/cf959b17db0a4f8dd7eb59add333c4a461b02459))
|
|
703
|
+
|
|
704
|
+
## 4.20.0 (2023-11-22)
|
|
705
|
+
|
|
706
|
+
Full Changelog: [v4.19.1...v4.20.0](https://github.com/openai/openai-node/compare/v4.19.1...v4.20.0)
|
|
707
|
+
|
|
708
|
+
### Features
|
|
709
|
+
|
|
710
|
+
* allow installing package directly from github ([#522](https://github.com/openai/openai-node/issues/522)) ([51926d7](https://github.com/openai/openai-node/commit/51926d7a0092744e49de39f4988feddf313adafa))
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
### Chores
|
|
714
|
+
|
|
715
|
+
* **internal:** don't call prepare in dist ([#525](https://github.com/openai/openai-node/issues/525)) ([d09411e](https://github.com/openai/openai-node/commit/d09411ebaa28d6610e1b880d03339d520b4a1833))
|
|
716
|
+
|
|
717
|
+
## 4.19.1 (2023-11-20)
|
|
718
|
+
|
|
719
|
+
Full Changelog: [v4.19.0...v4.19.1](https://github.com/openai/openai-node/compare/v4.19.0...v4.19.1)
|
|
720
|
+
|
|
721
|
+
## 4.19.0 (2023-11-15)
|
|
722
|
+
|
|
723
|
+
Full Changelog: [v4.18.0...v4.19.0](https://github.com/openai/openai-node/compare/v4.18.0...v4.19.0)
|
|
724
|
+
|
|
725
|
+
### Features
|
|
726
|
+
|
|
727
|
+
* **api:** updates ([#501](https://github.com/openai/openai-node/issues/501)) ([944d58e](https://github.com/openai/openai-node/commit/944d58e5fc46f1a0671aaa2b809d28e67edf6023))
|
|
728
|
+
|
|
729
|
+
## 4.18.0 (2023-11-14)
|
|
730
|
+
|
|
731
|
+
Full Changelog: [v4.17.5...v4.18.0](https://github.com/openai/openai-node/compare/v4.17.5...v4.18.0)
|
|
732
|
+
|
|
733
|
+
### Features
|
|
734
|
+
|
|
735
|
+
* **api:** add gpt-3.5-turbo-1106 ([#496](https://github.com/openai/openai-node/issues/496)) ([45f7672](https://github.com/openai/openai-node/commit/45f7672ccf4856ac309b08c6c96f0e73ab48b525))
|
|
736
|
+
|
|
737
|
+
## 4.17.5 (2023-11-13)
|
|
738
|
+
|
|
739
|
+
Full Changelog: [v4.17.4...v4.17.5](https://github.com/openai/openai-node/compare/v4.17.4...v4.17.5)
|
|
740
|
+
|
|
741
|
+
### Chores
|
|
742
|
+
|
|
743
|
+
* fix typo in docs and add request header for function calls ([#494](https://github.com/openai/openai-node/issues/494)) ([22ce244](https://github.com/openai/openai-node/commit/22ce2443a77f10988b3215bd81ba17d4eda4b10e))
|
|
744
|
+
|
|
745
|
+
## 4.17.4 (2023-11-10)
|
|
746
|
+
|
|
747
|
+
Full Changelog: [v4.17.3...v4.17.4](https://github.com/openai/openai-node/compare/v4.17.3...v4.17.4)
|
|
748
|
+
|
|
749
|
+
### Chores
|
|
750
|
+
|
|
751
|
+
* **internal:** update jest config ([#482](https://github.com/openai/openai-node/issues/482)) ([3013e8c](https://github.com/openai/openai-node/commit/3013e8c73a61a397a418ca75b996f0a7dd03a744))
|
|
752
|
+
|
|
753
|
+
## 4.17.3 (2023-11-09)
|
|
754
|
+
|
|
755
|
+
Full Changelog: [v4.17.2...v4.17.3](https://github.com/openai/openai-node/compare/v4.17.2...v4.17.3)
|
|
756
|
+
|
|
757
|
+
## 4.17.2 (2023-11-09)
|
|
758
|
+
|
|
759
|
+
Full Changelog: [v4.17.1...v4.17.2](https://github.com/openai/openai-node/compare/v4.17.1...v4.17.2)
|
|
760
|
+
|
|
761
|
+
### Chores
|
|
762
|
+
|
|
763
|
+
* **internal:** bump deno version number ([#478](https://github.com/openai/openai-node/issues/478)) ([69913f3](https://github.com/openai/openai-node/commit/69913f3a4b0123394029759375445dae7b4f15ab))
|
|
764
|
+
|
|
765
|
+
## 4.17.1 (2023-11-09)
|
|
766
|
+
|
|
767
|
+
Full Changelog: [v4.17.0...v4.17.1](https://github.com/openai/openai-node/compare/v4.17.0...v4.17.1)
|
|
768
|
+
|
|
769
|
+
### Refactors
|
|
770
|
+
|
|
771
|
+
* **client:** deprecate files.retrieveContent in favour of files.content ([#474](https://github.com/openai/openai-node/issues/474)) ([7c7bfc2](https://github.com/openai/openai-node/commit/7c7bfc2fad5a786c9172110e90c9566a943e49f9))
|
|
772
|
+
|
|
773
|
+
## 4.17.0 (2023-11-08)
|
|
774
|
+
|
|
775
|
+
Full Changelog: [v4.16.2...v4.17.0](https://github.com/openai/openai-node/compare/v4.16.2...v4.17.0)
|
|
776
|
+
|
|
777
|
+
### Features
|
|
778
|
+
|
|
779
|
+
* **api:** unify function types ([#467](https://github.com/openai/openai-node/issues/467)) ([d51cd94](https://github.com/openai/openai-node/commit/d51cd94b3103219789447e2e9afc4762ae672e5a))
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
### Refactors
|
|
783
|
+
|
|
784
|
+
* **api:** rename FunctionObject to FunctionDefinition ([#470](https://github.com/openai/openai-node/issues/470)) ([f3990c7](https://github.com/openai/openai-node/commit/f3990c779e596309b62f41d7a1253d8629aca3bf))
|
|
785
|
+
|
|
786
|
+
## 4.16.2 (2023-11-08)
|
|
787
|
+
|
|
788
|
+
Full Changelog: [v4.16.1...v4.16.2](https://github.com/openai/openai-node/compare/v4.16.1...v4.16.2)
|
|
789
|
+
|
|
790
|
+
### Bug Fixes
|
|
791
|
+
|
|
792
|
+
* **api:** accidentally required params, add new models & other fixes ([#463](https://github.com/openai/openai-node/issues/463)) ([1cb403e](https://github.com/openai/openai-node/commit/1cb403e4ccde61bb1613d362f6bdbca8b1681e00))
|
|
793
|
+
* **api:** update embedding response object type ([#466](https://github.com/openai/openai-node/issues/466)) ([53b7e25](https://github.com/openai/openai-node/commit/53b7e2539cca0b272be96136c123d2b33745e7f6))
|
|
794
|
+
* asssitant_deleted -> assistant_deleted ([#452](https://github.com/openai/openai-node/issues/452)) ([ef89bd7](https://github.com/openai/openai-node/commit/ef89bd74d85c833bf7de500eecd1b092a0ad3f37))
|
|
795
|
+
* **types:** ensure all code paths return a value ([#458](https://github.com/openai/openai-node/issues/458)) ([19402c3](https://github.com/openai/openai-node/commit/19402c365572a99cbee58bcd34a9942e741269bf))
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
### Chores
|
|
799
|
+
|
|
800
|
+
* **docs:** fix github links ([#457](https://github.com/openai/openai-node/issues/457)) ([6b9b94e](https://github.com/openai/openai-node/commit/6b9b94e4e123349a908b708cd574ff107f40a8e1))
|
|
801
|
+
* **internal:** fix typo in comment ([#456](https://github.com/openai/openai-node/issues/456)) ([fe24342](https://github.com/openai/openai-node/commit/fe2434284a91d424510873a18079b8870469c672))
|
|
802
|
+
|
|
803
|
+
|
|
804
|
+
### Documentation
|
|
805
|
+
|
|
806
|
+
* update deno deploy link to include v ([#441](https://github.com/openai/openai-node/issues/441)) ([47b13aa](https://github.com/openai/openai-node/commit/47b13aaa6fac86fffabee1f752ee6d2efc3def9b))
|
|
807
|
+
|
|
808
|
+
## 4.16.1 (2023-11-06)
|
|
809
|
+
|
|
810
|
+
Full Changelog: [v4.16.0...v4.16.1](https://github.com/openai/openai-node/compare/v4.16.0...v4.16.1)
|
|
811
|
+
|
|
812
|
+
### Bug Fixes
|
|
813
|
+
|
|
814
|
+
* **api:** retreival -> retrieval ([#437](https://github.com/openai/openai-node/issues/437)) ([b4bd3ee](https://github.com/openai/openai-node/commit/b4bd3eefdd3903abcc57c431382cc2124d39307b))
|
|
815
|
+
|
|
816
|
+
|
|
817
|
+
### Documentation
|
|
818
|
+
|
|
819
|
+
* **api:** improve docstrings ([#435](https://github.com/openai/openai-node/issues/435)) ([ee8b24c](https://github.com/openai/openai-node/commit/ee8b24c70a5ccb944e02ff2201668d6bc2b597b3))
|
|
820
|
+
|
|
821
|
+
## 4.16.0 (2023-11-06)
|
|
822
|
+
|
|
823
|
+
Full Changelog: [v4.15.4...v4.16.0](https://github.com/openai/openai-node/compare/v4.15.4...v4.16.0)
|
|
824
|
+
|
|
825
|
+
### Features
|
|
826
|
+
|
|
827
|
+
* **api:** releases from DevDay; assistants, multimodality, tools, dall-e-3, tts, and more ([#433](https://github.com/openai/openai-node/issues/433)) ([fb92f5e](https://github.com/openai/openai-node/commit/fb92f5e6e3b6e7969b3d91f4ccdaef87e5fea0a4))
|
|
828
|
+
|
|
829
|
+
|
|
830
|
+
### Bug Fixes
|
|
831
|
+
|
|
832
|
+
* improve deno readme ([#429](https://github.com/openai/openai-node/issues/429)) ([871ceac](https://github.com/openai/openai-node/commit/871ceac2b37f53f7fc7c0163454115c709cd7ced))
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
### Documentation
|
|
836
|
+
|
|
837
|
+
* deno version ([#432](https://github.com/openai/openai-node/issues/432)) ([74bf336](https://github.com/openai/openai-node/commit/74bf3364379fd23252fde01401c44b2fa796cba4))
|
|
838
|
+
* update deno link in more places ([#431](https://github.com/openai/openai-node/issues/431)) ([5da63d4](https://github.com/openai/openai-node/commit/5da63d4a9143c0ab493b742f7fde22b01a372844))
|
|
839
|
+
|
|
840
|
+
## 4.15.4 (2023-11-05)
|
|
841
|
+
|
|
842
|
+
Full Changelog: [v4.15.3...v4.15.4](https://github.com/openai/openai-node/compare/v4.15.3...v4.15.4)
|
|
843
|
+
|
|
844
|
+
### Documentation
|
|
845
|
+
|
|
846
|
+
* **readme:** remove redundant whitespace ([#427](https://github.com/openai/openai-node/issues/427)) ([aa3a178](https://github.com/openai/openai-node/commit/aa3a1782914a4a285263e4d070bca73e72ed47ec))
|
|
847
|
+
|
|
848
|
+
## 4.15.3 (2023-11-04)
|
|
849
|
+
|
|
850
|
+
Full Changelog: [v4.15.2...v4.15.3](https://github.com/openai/openai-node/compare/v4.15.2...v4.15.3)
|
|
851
|
+
|
|
852
|
+
### Bug Fixes
|
|
853
|
+
|
|
854
|
+
* improve deno releases ([#425](https://github.com/openai/openai-node/issues/425)) ([19469f2](https://github.com/openai/openai-node/commit/19469f266ff69a4e549402188d9f6ad87f5a7778))
|
|
855
|
+
|
|
856
|
+
## 4.15.2 (2023-11-04)
|
|
857
|
+
|
|
858
|
+
Full Changelog: [v4.15.1...v4.15.2](https://github.com/openai/openai-node/compare/v4.15.1...v4.15.2)
|
|
859
|
+
|
|
860
|
+
### Documentation
|
|
861
|
+
|
|
862
|
+
* fix deno.land import ([#423](https://github.com/openai/openai-node/issues/423)) ([e5415a2](https://github.com/openai/openai-node/commit/e5415a29ab447ced8535fafda7928b0a6748c8d1))
|
|
863
|
+
|
|
864
|
+
## 4.15.1 (2023-11-04)
|
|
865
|
+
|
|
866
|
+
Full Changelog: [v4.15.0...v4.15.1](https://github.com/openai/openai-node/compare/v4.15.0...v4.15.1)
|
|
867
|
+
|
|
868
|
+
### Documentation
|
|
869
|
+
|
|
870
|
+
* document customizing fetch ([#420](https://github.com/openai/openai-node/issues/420)) ([1ca982f](https://github.com/openai/openai-node/commit/1ca982f192daf49e33b7acb5505ed26c9d891255))
|
|
871
|
+
|
|
872
|
+
## 4.15.0 (2023-11-03)
|
|
873
|
+
|
|
874
|
+
Full Changelog: [v4.14.2...v4.15.0](https://github.com/openai/openai-node/compare/v4.14.2...v4.15.0)
|
|
875
|
+
|
|
876
|
+
### Features
|
|
877
|
+
|
|
878
|
+
* **beta:** add streaming and function calling helpers ([#409](https://github.com/openai/openai-node/issues/409)) ([510c1f3](https://github.com/openai/openai-node/commit/510c1f325ee55197b4c2f434475128c265500746))
|
|
879
|
+
* **client:** allow binary returns ([#416](https://github.com/openai/openai-node/issues/416)) ([02f7ad7](https://github.com/openai/openai-node/commit/02f7ad7f736751e0e7687e6744bae464d4e40b79))
|
|
880
|
+
* **github:** include a devcontainer setup ([#413](https://github.com/openai/openai-node/issues/413)) ([fb2996f](https://github.com/openai/openai-node/commit/fb2996f0d291210878145aacf9b952f8133d9414))
|
|
881
|
+
* streaming improvements ([#411](https://github.com/openai/openai-node/issues/411)) ([37b622c](https://github.com/openai/openai-node/commit/37b622c79ddbd6c286b730e740403c82b542e796))
|
|
882
|
+
|
|
883
|
+
## 4.14.2 (2023-10-30)
|
|
884
|
+
|
|
885
|
+
Full Changelog: [v4.14.1...v4.14.2](https://github.com/openai/openai-node/compare/v4.14.1...v4.14.2)
|
|
886
|
+
|
|
887
|
+
### Chores
|
|
888
|
+
|
|
889
|
+
* **docs:** update deno link ([#407](https://github.com/openai/openai-node/issues/407)) ([0328882](https://github.com/openai/openai-node/commit/0328882cccb3e5386283ffa5eb9cd8ad9442f3a0))
|
|
890
|
+
|
|
891
|
+
## 4.14.1 (2023-10-27)
|
|
892
|
+
|
|
893
|
+
Full Changelog: [v4.14.0...v4.14.1](https://github.com/openai/openai-node/compare/v4.14.0...v4.14.1)
|
|
894
|
+
|
|
895
|
+
### Bug Fixes
|
|
896
|
+
|
|
897
|
+
* deploy deno in a github workflow instead of postpublish step ([#405](https://github.com/openai/openai-node/issues/405)) ([3a6dba0](https://github.com/openai/openai-node/commit/3a6dba074258274bffcfe3a4260ca1b95bcd6bdc))
|
|
898
|
+
* typo in build script ([#403](https://github.com/openai/openai-node/issues/403)) ([76c5c96](https://github.com/openai/openai-node/commit/76c5c96a359f750f58ea38b5d32365db7e34409a))
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
### Chores
|
|
902
|
+
|
|
903
|
+
* **internal:** update gitignore ([#406](https://github.com/openai/openai-node/issues/406)) ([986b0bb](https://github.com/openai/openai-node/commit/986b0bbac9f5ca43a0df6f29f2a468dd4223e053))
|
|
904
|
+
|
|
905
|
+
## 4.14.0 (2023-10-25)
|
|
906
|
+
|
|
907
|
+
Full Changelog: [v4.13.0...v4.14.0](https://github.com/openai/openai-node/compare/v4.13.0...v4.14.0)
|
|
908
|
+
|
|
909
|
+
### Features
|
|
910
|
+
|
|
911
|
+
* **client:** adjust retry behavior to be exponential backoff ([#400](https://github.com/openai/openai-node/issues/400)) ([2bc14ce](https://github.com/openai/openai-node/commit/2bc14ce300ef020bc045199fe3d76dd352d78ef9))
|
|
912
|
+
|
|
913
|
+
|
|
914
|
+
### Chores
|
|
915
|
+
|
|
916
|
+
* **docs:** update deno version ([#399](https://github.com/openai/openai-node/issues/399)) ([cdee077](https://github.com/openai/openai-node/commit/cdee0770690d4b66b357d970827e9ba1597ffb89))
|
|
917
|
+
|
|
918
|
+
## 4.13.0 (2023-10-22)
|
|
919
|
+
|
|
920
|
+
Full Changelog: [v4.12.4...v4.13.0](https://github.com/openai/openai-node/compare/v4.12.4...v4.13.0)
|
|
921
|
+
|
|
922
|
+
### Features
|
|
923
|
+
|
|
924
|
+
* **api:** add embeddings encoding_format ([#390](https://github.com/openai/openai-node/issues/390)) ([cf70dea](https://github.com/openai/openai-node/commit/cf70deaba1426786aba9b938d280c61aeb516e34))
|
|
925
|
+
* handle 204 No Content gracefully ([#391](https://github.com/openai/openai-node/issues/391)) ([2dd005c](https://github.com/openai/openai-node/commit/2dd005c1c497605036d3524f19d130b3fc5f8d8b))
|
|
926
|
+
|
|
927
|
+
## 4.12.4 (2023-10-17)
|
|
928
|
+
|
|
929
|
+
Full Changelog: [v4.12.3...v4.12.4](https://github.com/openai/openai-node/compare/v4.12.3...v4.12.4)
|
|
930
|
+
|
|
931
|
+
### Bug Fixes
|
|
932
|
+
|
|
933
|
+
* import web-streams-polyfill without overriding globals ([#385](https://github.com/openai/openai-node/issues/385)) ([be8e18b](https://github.com/openai/openai-node/commit/be8e18ba4c6a16e7b6413c77246f83230e0b8fc2))
|
|
934
|
+
|
|
935
|
+
## 4.12.3 (2023-10-16)
|
|
936
|
+
|
|
937
|
+
Full Changelog: [v4.12.2...v4.12.3](https://github.com/openai/openai-node/compare/v4.12.2...v4.12.3)
|
|
938
|
+
|
|
939
|
+
### Documentation
|
|
940
|
+
|
|
941
|
+
* organisation -> organization (UK to US English) ([#382](https://github.com/openai/openai-node/issues/382)) ([516f0ad](https://github.com/openai/openai-node/commit/516f0ade1ec1fd8fc4c78999ee0f656cc2b5ae58))
|
|
942
|
+
|
|
943
|
+
## 4.12.2 (2023-10-16)
|
|
944
|
+
|
|
945
|
+
Full Changelog: [v4.12.1...v4.12.2](https://github.com/openai/openai-node/compare/v4.12.1...v4.12.2)
|
|
946
|
+
|
|
947
|
+
### Bug Fixes
|
|
948
|
+
|
|
949
|
+
* **client:** correctly handle errors during streaming ([#377](https://github.com/openai/openai-node/issues/377)) ([09233b1](https://github.com/openai/openai-node/commit/09233b1ccc80ee900be19050f438cc8aa9dbb513))
|
|
950
|
+
* **client:** correctly handle errors during streaming ([#379](https://github.com/openai/openai-node/issues/379)) ([9ced580](https://github.com/openai/openai-node/commit/9ced5804777a5857d6775a49ddf30ed9cc016fab))
|
|
951
|
+
* improve status code in error messages ([#381](https://github.com/openai/openai-node/issues/381)) ([68dfb17](https://github.com/openai/openai-node/commit/68dfb17cce300ade8d29afc854d616833b3283ca))
|
|
952
|
+
|
|
953
|
+
|
|
954
|
+
### Chores
|
|
955
|
+
|
|
956
|
+
* add case insensitive get header function ([#373](https://github.com/openai/openai-node/issues/373)) ([b088998](https://github.com/openai/openai-node/commit/b088998ae610de54bb8700eefd6b664eb9a2fcc3))
|
|
957
|
+
* **internal:** add debug logs for stream responses ([#380](https://github.com/openai/openai-node/issues/380)) ([689db0b](https://github.com/openai/openai-node/commit/689db0b8058527ae5c3af5e457c962d8a6635297))
|
|
958
|
+
* show deprecation notice on re-export ([#368](https://github.com/openai/openai-node/issues/368)) ([b176703](https://github.com/openai/openai-node/commit/b176703102998f0e9d8ca2ed93ccd495fd10a6ee))
|
|
959
|
+
* update comment ([#376](https://github.com/openai/openai-node/issues/376)) ([a06c685](https://github.com/openai/openai-node/commit/a06c6850bfdd756dc8f07dd1f70218be610faa30))
|
|
960
|
+
* update comment ([#378](https://github.com/openai/openai-node/issues/378)) ([b04031d](https://github.com/openai/openai-node/commit/b04031d19210a66f82c7d233a50f7bc427a1bf92))
|
|
961
|
+
|
|
962
|
+
|
|
963
|
+
### Refactors
|
|
964
|
+
|
|
965
|
+
* **streaming:** change Stream constructor signature ([#370](https://github.com/openai/openai-node/issues/370)) ([71984ed](https://github.com/openai/openai-node/commit/71984edc3141ba99ffa1327bab6a182b4452209f))
|
|
966
|
+
* **test:** refactor authentication tests ([#371](https://github.com/openai/openai-node/issues/371)) ([e0d459f](https://github.com/openai/openai-node/commit/e0d459f958451a99e15a11a0e5ea6471abbe1ac1))
|
|
967
|
+
|
|
968
|
+
## 4.12.1 (2023-10-11)
|
|
969
|
+
|
|
970
|
+
Full Changelog: [v4.12.0...v4.12.1](https://github.com/openai/openai-node/compare/v4.12.0...v4.12.1)
|
|
971
|
+
|
|
972
|
+
### Bug Fixes
|
|
973
|
+
|
|
974
|
+
* fix namespace exports regression ([#366](https://github.com/openai/openai-node/issues/366)) ([b2b1d85](https://github.com/openai/openai-node/commit/b2b1d85d90eef51e689ca75c0ca2f35bb63cccc0))
|
|
975
|
+
|
|
976
|
+
## 4.12.0 (2023-10-11)
|
|
977
|
+
|
|
978
|
+
Full Changelog: [v4.11.1...v4.12.0](https://github.com/openai/openai-node/compare/v4.11.1...v4.12.0)
|
|
979
|
+
|
|
980
|
+
### Features
|
|
981
|
+
|
|
982
|
+
* **api:** remove `content_filter` stop_reason and update documentation ([#352](https://github.com/openai/openai-node/issues/352)) ([a4b401e](https://github.com/openai/openai-node/commit/a4b401e91a0b3fbf55aedfb6ed6d93396377bf27))
|
|
983
|
+
* re-export chat completion types at the top level, and work around webpack limitations ([#365](https://github.com/openai/openai-node/issues/365)) ([bb815d0](https://github.com/openai/openai-node/commit/bb815d0373ae33f58329e34e8983f5b3881db22d))
|
|
984
|
+
|
|
985
|
+
|
|
986
|
+
### Bug Fixes
|
|
987
|
+
|
|
988
|
+
* prevent ReferenceError, update compatibility to ES2020 and Node 18+ ([#356](https://github.com/openai/openai-node/issues/356)) ([fc71a4b](https://github.com/openai/openai-node/commit/fc71a4b6b73208ff3e8f0c8792a9a03e3790d26b))
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
### Chores
|
|
992
|
+
|
|
993
|
+
* **internal:** minor formatting improvement ([#354](https://github.com/openai/openai-node/issues/354)) ([3799863](https://github.com/openai/openai-node/commit/3799863da4ff2a27940ef0b7e57360c72e44d986))
|
|
994
|
+
|
|
995
|
+
## 4.11.1 (2023-10-03)
|
|
996
|
+
|
|
997
|
+
Full Changelog: [v4.11.0...v4.11.1](https://github.com/openai/openai-node/compare/v4.11.0...v4.11.1)
|
|
998
|
+
|
|
999
|
+
## 4.11.0 (2023-09-29)
|
|
1000
|
+
|
|
1001
|
+
Full Changelog: [v4.10.0...v4.11.0](https://github.com/openai/openai-node/compare/v4.10.0...v4.11.0)
|
|
1002
|
+
|
|
1003
|
+
### Features
|
|
1004
|
+
|
|
1005
|
+
* **client:** handle retry-after with a date ([#340](https://github.com/openai/openai-node/issues/340)) ([b6dd384](https://github.com/openai/openai-node/commit/b6dd38488ea7cc4c22495f16d027b7ffdb87da53))
|
|
1006
|
+
* **package:** export a root error type ([#338](https://github.com/openai/openai-node/issues/338)) ([462bcda](https://github.com/openai/openai-node/commit/462bcda7140611afa20bc25de4aec6d4b205b37d))
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
### Bug Fixes
|
|
1010
|
+
|
|
1011
|
+
* **api:** add content_filter to chat completion finish reason ([#344](https://github.com/openai/openai-node/issues/344)) ([f10c757](https://github.com/openai/openai-node/commit/f10c757d831d90407ba47b4659d9cd34b1a35b1d))
|
|
1012
|
+
|
|
1013
|
+
|
|
1014
|
+
### Chores
|
|
1015
|
+
|
|
1016
|
+
* **internal:** bump lock file ([#334](https://github.com/openai/openai-node/issues/334)) ([fd2337b](https://github.com/openai/openai-node/commit/fd2337b018ab2f31bcea8f9feda0ddaf755390c7))
|
|
1017
|
+
* **internal:** update lock file ([#339](https://github.com/openai/openai-node/issues/339)) ([1bf84b6](https://github.com/openai/openai-node/commit/1bf84b672c386f8ca46bb8fc120eb8d8d48b3a82))
|
|
1018
|
+
* **internal:** update lock file ([#342](https://github.com/openai/openai-node/issues/342)) ([0001f06](https://github.com/openai/openai-node/commit/0001f062728b0e2047d2bf03b9d947a4be0c7206))
|
|
1019
|
+
* **internal:** update lock file ([#343](https://github.com/openai/openai-node/issues/343)) ([a02ac8e](https://github.com/openai/openai-node/commit/a02ac8e7f881551527a3cbcadad53b7e424650e8))
|
|
1020
|
+
|
|
1021
|
+
## 4.10.0 (2023-09-21)
|
|
1022
|
+
|
|
1023
|
+
Full Changelog: [v4.9.1...v4.10.0](https://github.com/openai/openai-node/compare/v4.9.1...v4.10.0)
|
|
1024
|
+
|
|
1025
|
+
### Features
|
|
1026
|
+
|
|
1027
|
+
* **api:** add 'gpt-3.5-turbo-instruct', fine-tune error objects, update documentation ([#329](https://github.com/openai/openai-node/issues/329)) ([e5f3852](https://github.com/openai/openai-node/commit/e5f385233737002b4bb47a94cba33da7fedfe64d))
|
|
1028
|
+
|
|
1029
|
+
## 4.10.0 (2023-09-21)
|
|
1030
|
+
|
|
1031
|
+
Full Changelog: [v4.9.1...v4.10.0](https://github.com/openai/openai-node/compare/v4.9.1...v4.10.0)
|
|
1032
|
+
|
|
1033
|
+
### Features
|
|
1034
|
+
|
|
1035
|
+
* **api:** add 'gpt-3.5-turbo-instruct', fine-tune error objects, update documentation ([#329](https://github.com/openai/openai-node/issues/329)) ([e5f3852](https://github.com/openai/openai-node/commit/e5f385233737002b4bb47a94cba33da7fedfe64d))
|
|
1036
|
+
|
|
1037
|
+
## 4.9.1 (2023-09-21)
|
|
1038
|
+
|
|
1039
|
+
Full Changelog: [v4.9.0...v4.9.1](https://github.com/openai/openai-node/compare/v4.9.0...v4.9.1)
|
|
1040
|
+
|
|
1041
|
+
### Documentation
|
|
1042
|
+
|
|
1043
|
+
* **README:** fix variable names in some examples ([#327](https://github.com/openai/openai-node/issues/327)) ([5e05b31](https://github.com/openai/openai-node/commit/5e05b31c132545ce166cea92c5f3e4410fd40711))
|
|
1044
|
+
|
|
1045
|
+
## 4.9.0 (2023-09-20)
|
|
1046
|
+
|
|
1047
|
+
Full Changelog: [v4.8.0...v4.9.0](https://github.com/openai/openai-node/compare/v4.8.0...v4.9.0)
|
|
1048
|
+
|
|
1049
|
+
### Features
|
|
1050
|
+
|
|
1051
|
+
* **client:** support importing node or web shims manually ([#325](https://github.com/openai/openai-node/issues/325)) ([628f293](https://github.com/openai/openai-node/commit/628f2935a8791625685f68f73db8f3759b8f4f91))
|
|
1052
|
+
|
|
1053
|
+
## 4.8.0 (2023-09-15)
|
|
1054
|
+
|
|
1055
|
+
Full Changelog: [v4.7.1...v4.8.0](https://github.com/openai/openai-node/compare/v4.7.1...v4.8.0)
|
|
1056
|
+
|
|
1057
|
+
### Features
|
|
1058
|
+
|
|
1059
|
+
* **errors:** add status code to error message ([#315](https://github.com/openai/openai-node/issues/315)) ([9341219](https://github.com/openai/openai-node/commit/93412197c67cb3fb203f35e3ae0a7c3fb173453e))
|
|
1060
|
+
|
|
1061
|
+
## 4.7.1 (2023-09-15)
|
|
1062
|
+
|
|
1063
|
+
Full Changelog: [v4.7.0...v4.7.1](https://github.com/openai/openai-node/compare/v4.7.0...v4.7.1)
|
|
1064
|
+
|
|
1065
|
+
### Documentation
|
|
1066
|
+
|
|
1067
|
+
* declare Bun 1.0 officially supported ([#314](https://github.com/openai/openai-node/issues/314)) ([a16e268](https://github.com/openai/openai-node/commit/a16e26863390235cb43e2fe0e569298a4f84c32f))
|
|
1068
|
+
|
|
1069
|
+
## 4.7.0 (2023-09-14)
|
|
1070
|
+
|
|
1071
|
+
Full Changelog: [v4.6.0...v4.7.0](https://github.com/openai/openai-node/compare/v4.6.0...v4.7.0)
|
|
1072
|
+
|
|
1073
|
+
### Features
|
|
1074
|
+
|
|
1075
|
+
* **client:** retry on 408 Request Timeout ([#310](https://github.com/openai/openai-node/issues/310)) ([1f98eac](https://github.com/openai/openai-node/commit/1f98eac5be956e56d75ef5456115165b45a4763c))
|
|
1076
|
+
* make docs urls in comments absolute ([#306](https://github.com/openai/openai-node/issues/306)) ([9db3819](https://github.com/openai/openai-node/commit/9db381961e38d2280b0602447e7d91691b327bde))
|
|
1077
|
+
|
|
1078
|
+
## 4.6.0 (2023-09-08)
|
|
1079
|
+
|
|
1080
|
+
Full Changelog: [v4.5.0...v4.6.0](https://github.com/openai/openai-node/compare/v4.5.0...v4.6.0)
|
|
1081
|
+
|
|
1082
|
+
### Features
|
|
1083
|
+
|
|
1084
|
+
* **types:** extract ChatCompletionRole enum to its own type ([#298](https://github.com/openai/openai-node/issues/298)) ([5893e37](https://github.com/openai/openai-node/commit/5893e37406ff85331c85a3baa519ca3051a28e00))
|
|
1085
|
+
|
|
1086
|
+
|
|
1087
|
+
### Bug Fixes
|
|
1088
|
+
|
|
1089
|
+
* fix module not found errors in Vercel edge ([#300](https://github.com/openai/openai-node/issues/300)) ([47c79fe](https://github.com/openai/openai-node/commit/47c79fee0fa715ad04410e73530829602736d85f))
|
|
1090
|
+
|
|
1091
|
+
## 4.5.0 (2023-09-06)
|
|
1092
|
+
|
|
1093
|
+
Full Changelog: [v4.4.0...v4.5.0](https://github.com/openai/openai-node/compare/v4.4.0...v4.5.0)
|
|
1094
|
+
|
|
1095
|
+
### Features
|
|
1096
|
+
|
|
1097
|
+
* **client:** add files.waitForProcessing() method ([#292](https://github.com/openai/openai-node/issues/292)) ([ef59010](https://github.com/openai/openai-node/commit/ef59010cab0c666fa8a437ec6e27800789aa8705))
|
|
1098
|
+
* fixes tests where an array has to have unique enum values ([#290](https://github.com/openai/openai-node/issues/290)) ([a10b895](https://github.com/openai/openai-node/commit/a10b8956b3eaae7cdcb90329a8386a41219ca021))
|
|
1099
|
+
* make docs more readable by eliminating unnecessary escape sequences ([#287](https://github.com/openai/openai-node/issues/287)) ([a068043](https://github.com/openai/openai-node/commit/a06804314d4815d420c97f6f965c926ea70d56df))
|
|
1100
|
+
|
|
1101
|
+
|
|
1102
|
+
### Bug Fixes
|
|
1103
|
+
|
|
1104
|
+
* **client:** fix TS errors that appear when users Go to Source in VSCode ([#281](https://github.com/openai/openai-node/issues/281)) ([8dc59bc](https://github.com/openai/openai-node/commit/8dc59bcf924cc991747ca475c714d915e04c6012)), closes [#249](https://github.com/openai/openai-node/issues/249)
|
|
1105
|
+
* **client:** handle case where the client is instantiated with a undefined baseURL ([#285](https://github.com/openai/openai-node/issues/285)) ([5095cf3](https://github.com/openai/openai-node/commit/5095cf340743e4627b4f0ad2f055ebe332824d23))
|
|
1106
|
+
* **client:** use explicit file extensions in _shims imports ([#276](https://github.com/openai/openai-node/issues/276)) ([16fe929](https://github.com/openai/openai-node/commit/16fe929688d35c2ebe52c8cf1c1570bafda5f97e))
|
|
1107
|
+
|
|
1108
|
+
|
|
1109
|
+
### Documentation
|
|
1110
|
+
|
|
1111
|
+
* **api:** update docstrings ([#286](https://github.com/openai/openai-node/issues/286)) ([664e953](https://github.com/openai/openai-node/commit/664e9532c8acfbf981e9a788ab40c111ebe2fda0))
|
|
1112
|
+
* **readme:** add link to api.md ([#291](https://github.com/openai/openai-node/issues/291)) ([0d1cce2](https://github.com/openai/openai-node/commit/0d1cce26cdc6567c10c8d72bbc72a788ffb8f2be))
|
|
1113
|
+
|
|
1114
|
+
## 4.4.0 (2023-09-01)
|
|
1115
|
+
|
|
1116
|
+
Full Changelog: [v4.3.1...v4.4.0](https://github.com/openai/openai-node/compare/v4.3.1...v4.4.0)
|
|
1117
|
+
|
|
1118
|
+
### Features
|
|
1119
|
+
|
|
1120
|
+
* **package:** add Bun export map ([#269](https://github.com/openai/openai-node/issues/269)) ([16f239c](https://github.com/openai/openai-node/commit/16f239c6b4e8526371b01c511d2e0ebba4c5c8c6))
|
|
1121
|
+
* re-export chat completion types at the top level ([#268](https://github.com/openai/openai-node/issues/268)) ([1a71a39](https://github.com/openai/openai-node/commit/1a71a39421828fdde7b8605094363a5047d2fdc9))
|
|
1122
|
+
* **tests:** unskip multipart form data tests ([#275](https://github.com/openai/openai-node/issues/275)) ([47d3e18](https://github.com/openai/openai-node/commit/47d3e18a3ee987d04b958dad1a51821ad5472d54))
|
|
1123
|
+
* **types:** fix ambiguous auto-import for chat completions params ([#266](https://github.com/openai/openai-node/issues/266)) ([19c99fb](https://github.com/openai/openai-node/commit/19c99fb268d6d6c7fc7aaa66475c35f45d12b4bd))
|
|
1124
|
+
|
|
1125
|
+
|
|
1126
|
+
### Bug Fixes
|
|
1127
|
+
|
|
1128
|
+
* revert import change which triggered circular import bug in webpack ([#274](https://github.com/openai/openai-node/issues/274)) ([6534e36](https://github.com/openai/openai-node/commit/6534e3620d7e2983e98b42cf95fa966deab1ab1d))
|
|
1129
|
+
|
|
1130
|
+
## 4.3.1 (2023-08-29)
|
|
1131
|
+
|
|
1132
|
+
Full Changelog: [v4.3.0...v4.3.1](https://github.com/openai/openai-node/compare/v4.3.0...v4.3.1)
|
|
1133
|
+
|
|
1134
|
+
### Bug Fixes
|
|
1135
|
+
|
|
1136
|
+
* **types:** improve getNextPage() return type ([#262](https://github.com/openai/openai-node/issues/262)) ([245a984](https://github.com/openai/openai-node/commit/245a9847d1ba5bbe5262bc06b2f7bb7385cd3a9a))
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
|
+
### Chores
|
|
1140
|
+
|
|
1141
|
+
* **ci:** setup workflows to create releases and release PRs ([#259](https://github.com/openai/openai-node/issues/259)) ([290908c](https://github.com/openai/openai-node/commit/290908ce24dc6c31df18b2eb7808d5b495387454))
|
|
1142
|
+
|
|
1143
|
+
## [4.3.0](https://github.com/openai/openai-node/compare/v4.2.0...v4.3.0) (2023-08-27)
|
|
1144
|
+
|
|
1145
|
+
|
|
1146
|
+
### Features
|
|
1147
|
+
|
|
1148
|
+
* **client:** add auto-pagination to fine tuning list endpoints ([#254](https://github.com/openai/openai-node/issues/254)) ([5f89c5e](https://github.com/openai/openai-node/commit/5f89c5e6b9088cc2e86405a32b60cae91c078ce1))
|
|
1149
|
+
* **cli:** rewrite in JS for better compatibility ([#244](https://github.com/openai/openai-node/issues/244)) ([d8d7c05](https://github.com/openai/openai-node/commit/d8d7c0592bfad89669cd2f174e6207370cd7d3fb))
|
|
1150
|
+
|
|
1151
|
+
|
|
1152
|
+
### Bug Fixes
|
|
1153
|
+
|
|
1154
|
+
* **stream:** declare Stream.controller as public ([#252](https://github.com/openai/openai-node/issues/252)) ([81e5de7](https://github.com/openai/openai-node/commit/81e5de7ba94c992cafa3d08e2697c8122382497a))
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
### Documentation
|
|
1158
|
+
|
|
1159
|
+
* **readme:** mention Azure support ([#253](https://github.com/openai/openai-node/issues/253)) ([294727a](https://github.com/openai/openai-node/commit/294727ad3543d91ef59df285ce1616c442d369db))
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
### Chores
|
|
1163
|
+
|
|
1164
|
+
* **internal:** add helper method ([#255](https://github.com/openai/openai-node/issues/255)) ([6d8cff0](https://github.com/openai/openai-node/commit/6d8cff00164c0f65ed40b941486f2e0d752feb1e))
|
|
1165
|
+
|
|
1166
|
+
## [4.2.0](https://github.com/openai/openai-node/compare/v4.1.0...v4.2.0) (2023-08-23)
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
### Features
|
|
1170
|
+
|
|
1171
|
+
* **types:** export RequestOptions type ([#240](https://github.com/openai/openai-node/issues/240)) ([ecf3bce](https://github.com/openai/openai-node/commit/ecf3bcee3c64a80a3cd901aa32d3db78d1364645))
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
### Chores
|
|
1175
|
+
|
|
1176
|
+
* **internal:** export HeadersInit type shim ([#241](https://github.com/openai/openai-node/issues/241)) ([cf9f672](https://github.com/openai/openai-node/commit/cf9f6729b5b232a37841c33db33b2519b54f19b2))
|