@ai-sdk/openai 1.3.14 → 1.3.15
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/internal/dist/index.d.mts +1 -1
- package/internal/dist/index.d.ts +1 -1
- package/internal/dist/index.js +1 -1
- package/internal/dist/index.js.map +1 -1
- package/internal/dist/index.mjs +1 -1
- package/internal/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1043,7 +1043,7 @@ var openaiChatChunkSchema = z2.union([
|
|
|
1043
1043
|
openaiErrorDataSchema
|
|
1044
1044
|
]);
|
|
1045
1045
|
function isReasoningModel(modelId) {
|
|
1046
|
-
return modelId === "o1" || modelId.startsWith("o1-") || modelId === "o3" || modelId.startsWith("o3-");
|
|
1046
|
+
return modelId === "o1" || modelId.startsWith("o1-") || modelId === "o3" || modelId.startsWith("o3-") || modelId.startsWith("o4-");
|
|
1047
1047
|
}
|
|
1048
1048
|
function isAudioModel(modelId) {
|
|
1049
1049
|
return modelId.startsWith("gpt-4o-audio-preview");
|