* fix: update provider-utils and add patch for header merging logic * fix: enhance header merging logic to deduplicate values * fix: handle null values in header merging logic * chore: update ai-sdk dependencies and remove obsolete patches - Updated @ai-sdk/amazon-bedrock from 3.0.56 to 3.0.61 - Updated @ai-sdk/anthropic from 2.0.45 to 2.0.49 - Updated @ai-sdk/gateway from 2.0.13 to 2.0.15 - Updated @ai-sdk/google from 2.0.40 to 2.0.43 - Updated @ai-sdk/google-vertex from 3.0.72 to 3.0.79 - Updated @ai-sdk/openai from 2.0.71 to 2.0.72 - Updated @ai-sdk/provider-utils from patch version to 3.0.17 - Removed obsolete patches for @ai-sdk/openai and @ai-sdk/provider-utils - Added reasoning_content field to OpenAIChat response and chunk schemas - Enhanced OpenAIChatLanguageModel to handle reasoning content in responses * chore
27 lines
1016 B
Diff
Vendored
27 lines
1016 B
Diff
Vendored
diff --git a/dist/index.js b/dist/index.js
|
|
index 51ce7e423934fb717cb90245cdfcdb3dae6780e6..0f7f7009e2f41a79a8669d38c8a44867bbff5e1f 100644
|
|
--- a/dist/index.js
|
|
+++ b/dist/index.js
|
|
@@ -474,7 +474,7 @@ function convertToGoogleGenerativeAIMessages(prompt, options) {
|
|
|
|
// src/get-model-path.ts
|
|
function getModelPath(modelId) {
|
|
- return modelId.includes("/") ? modelId : `models/${modelId}`;
|
|
+ return modelId.includes("models/") ? modelId : `models/${modelId}`;
|
|
}
|
|
|
|
// src/google-generative-ai-options.ts
|
|
diff --git a/dist/index.mjs b/dist/index.mjs
|
|
index f4b77e35c0cbfece85a3ef0d4f4e67aa6dde6271..8d2fecf8155a226006a0bde72b00b6036d4014b6 100644
|
|
--- a/dist/index.mjs
|
|
+++ b/dist/index.mjs
|
|
@@ -480,7 +480,7 @@ function convertToGoogleGenerativeAIMessages(prompt, options) {
|
|
|
|
// src/get-model-path.ts
|
|
function getModelPath(modelId) {
|
|
- return modelId.includes("/") ? modelId : `models/${modelId}`;
|
|
+ return modelId.includes("models/") ? modelId : `models/${modelId}`;
|
|
}
|
|
|
|
// src/google-generative-ai-options.ts
|