@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.
@@ -3352,7 +3352,8 @@ var OpenAIResponsesLanguageModel = class {
3352
3352
  controller.enqueue({
3353
3353
  type: "tool-input-start",
3354
3354
  id: value.item.id,
3355
- toolName: webSearchToolName != null ? webSearchToolName : "web_search"
3355
+ toolName: webSearchToolName != null ? webSearchToolName : "web_search",
3356
+ providerExecuted: true
3356
3357
  });
3357
3358
  } else if (value.item.type === "computer_call") {
3358
3359
  ongoingToolCalls[value.output_index] = {
@@ -3362,7 +3363,8 @@ var OpenAIResponsesLanguageModel = class {
3362
3363
  controller.enqueue({
3363
3364
  type: "tool-input-start",
3364
3365
  id: value.item.id,
3365
- toolName: "computer_use"
3366
+ toolName: "computer_use",
3367
+ providerExecuted: true
3366
3368
  });
3367
3369
  } else if (value.item.type === "code_interpreter_call") {
3368
3370
  ongoingToolCalls[value.output_index] = {
@@ -3375,7 +3377,8 @@ var OpenAIResponsesLanguageModel = class {
3375
3377
  controller.enqueue({
3376
3378
  type: "tool-input-start",
3377
3379
  id: value.item.id,
3378
- toolName: "code_interpreter"
3380
+ toolName: "code_interpreter",
3381
+ providerExecuted: true
3379
3382
  });
3380
3383
  controller.enqueue({
3381
3384
  type: "tool-input-delta",