@ai-sdk/openai 2.0.43 → 2.0.44

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/dist/index.mjs CHANGED
@@ -3099,7 +3099,8 @@ var OpenAIResponsesLanguageModel = class {
3099
3099
  controller.enqueue({
3100
3100
  type: "tool-input-start",
3101
3101
  id: value.item.id,
3102
- toolName: webSearchToolName != null ? webSearchToolName : "web_search"
3102
+ toolName: webSearchToolName != null ? webSearchToolName : "web_search",
3103
+ providerExecuted: true
3103
3104
  });
3104
3105
  } else if (value.item.type === "computer_call") {
3105
3106
  ongoingToolCalls[value.output_index] = {
@@ -3109,7 +3110,8 @@ var OpenAIResponsesLanguageModel = class {
3109
3110
  controller.enqueue({
3110
3111
  type: "tool-input-start",
3111
3112
  id: value.item.id,
3112
- toolName: "computer_use"
3113
+ toolName: "computer_use",
3114
+ providerExecuted: true
3113
3115
  });
3114
3116
  } else if (value.item.type === "code_interpreter_call") {
3115
3117
  ongoingToolCalls[value.output_index] = {
@@ -3122,7 +3124,8 @@ var OpenAIResponsesLanguageModel = class {
3122
3124
  controller.enqueue({
3123
3125
  type: "tool-input-start",
3124
3126
  id: value.item.id,
3125
- toolName: "code_interpreter"
3127
+ toolName: "code_interpreter",
3128
+ providerExecuted: true
3126
3129
  });
3127
3130
  controller.enqueue({
3128
3131
  type: "tool-input-delta",
@@ -4114,7 +4117,7 @@ var openaiTranscriptionResponseSchema = z19.object({
4114
4117
  });
4115
4118
 
4116
4119
  // src/version.ts
4117
- var VERSION = true ? "2.0.43" : "0.0.0-test";
4120
+ var VERSION = true ? "2.0.44" : "0.0.0-test";
4118
4121
 
4119
4122
  // src/openai-provider.ts
4120
4123
  function createOpenAI(options = {}) {