@ai-sdk/openai 2.1.0-beta.13 → 2.1.0-beta.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/dist/index.mjs CHANGED
@@ -3113,7 +3113,8 @@ var OpenAIResponsesLanguageModel = class {
3113
3113
  controller.enqueue({
3114
3114
  type: "tool-input-start",
3115
3115
  id: value.item.id,
3116
- toolName: webSearchToolName != null ? webSearchToolName : "web_search"
3116
+ toolName: webSearchToolName != null ? webSearchToolName : "web_search",
3117
+ providerExecuted: true
3117
3118
  });
3118
3119
  } else if (value.item.type === "computer_call") {
3119
3120
  ongoingToolCalls[value.output_index] = {
@@ -3123,7 +3124,8 @@ var OpenAIResponsesLanguageModel = class {
3123
3124
  controller.enqueue({
3124
3125
  type: "tool-input-start",
3125
3126
  id: value.item.id,
3126
- toolName: "computer_use"
3127
+ toolName: "computer_use",
3128
+ providerExecuted: true
3127
3129
  });
3128
3130
  } else if (value.item.type === "code_interpreter_call") {
3129
3131
  ongoingToolCalls[value.output_index] = {
@@ -3136,7 +3138,8 @@ var OpenAIResponsesLanguageModel = class {
3136
3138
  controller.enqueue({
3137
3139
  type: "tool-input-start",
3138
3140
  id: value.item.id,
3139
- toolName: "code_interpreter"
3141
+ toolName: "code_interpreter",
3142
+ providerExecuted: true
3140
3143
  });
3141
3144
  controller.enqueue({
3142
3145
  type: "tool-input-delta",
@@ -4149,7 +4152,7 @@ var openaiTranscriptionResponseSchema = z19.object({
4149
4152
  });
4150
4153
 
4151
4154
  // src/version.ts
4152
- var VERSION = true ? "2.1.0-beta.13" : "0.0.0-test";
4155
+ var VERSION = true ? "2.1.0-beta.15" : "0.0.0-test";
4153
4156
 
4154
4157
  // src/openai-provider.ts
4155
4158
  function createOpenAI(options = {}) {