@ai-sdk/openai 3.0.31 → 3.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.d.mts +1 -1
- package/dist/internal/index.d.ts +1 -1
- package/dist/internal/index.js +3 -1
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +3 -1
- package/dist/internal/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/responses/openai-responses-options.ts +4 -0
package/dist/index.mjs
CHANGED
|
@@ -3858,7 +3858,9 @@ var openaiResponsesReasoningModelIds = [
|
|
|
3858
3858
|
"gpt-5.1-codex-max",
|
|
3859
3859
|
"gpt-5.2",
|
|
3860
3860
|
"gpt-5.2-chat-latest",
|
|
3861
|
-
"gpt-5.2-pro"
|
|
3861
|
+
"gpt-5.2-pro",
|
|
3862
|
+
"gpt-5.2-codex",
|
|
3863
|
+
"gpt-5.3-codex"
|
|
3862
3864
|
];
|
|
3863
3865
|
var openaiResponsesModelIds = [
|
|
3864
3866
|
"gpt-4.1",
|
|
@@ -6144,7 +6146,7 @@ var OpenAITranscriptionModel = class {
|
|
|
6144
6146
|
};
|
|
6145
6147
|
|
|
6146
6148
|
// src/version.ts
|
|
6147
|
-
var VERSION = true ? "3.0.
|
|
6149
|
+
var VERSION = true ? "3.0.32" : "0.0.0-test";
|
|
6148
6150
|
|
|
6149
6151
|
// src/openai-provider.ts
|
|
6150
6152
|
function createOpenAI(options = {}) {
|