@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.
@@ -3371,7 +3371,8 @@ var OpenAIResponsesLanguageModel = class {
3371
3371
  controller.enqueue({
3372
3372
  type: "tool-input-start",
3373
3373
  id: value.item.id,
3374
- toolName: webSearchToolName != null ? webSearchToolName : "web_search"
3374
+ toolName: webSearchToolName != null ? webSearchToolName : "web_search",
3375
+ providerExecuted: true
3375
3376
  });
3376
3377
  } else if (value.item.type === "computer_call") {
3377
3378
  ongoingToolCalls[value.output_index] = {
@@ -3381,7 +3382,8 @@ var OpenAIResponsesLanguageModel = class {
3381
3382
  controller.enqueue({
3382
3383
  type: "tool-input-start",
3383
3384
  id: value.item.id,
3384
- toolName: "computer_use"
3385
+ toolName: "computer_use",
3386
+ providerExecuted: true
3385
3387
  });
3386
3388
  } else if (value.item.type === "code_interpreter_call") {
3387
3389
  ongoingToolCalls[value.output_index] = {
@@ -3394,7 +3396,8 @@ var OpenAIResponsesLanguageModel = class {
3394
3396
  controller.enqueue({
3395
3397
  type: "tool-input-start",
3396
3398
  id: value.item.id,
3397
- toolName: "code_interpreter"
3399
+ toolName: "code_interpreter",
3400
+ providerExecuted: true
3398
3401
  });
3399
3402
  controller.enqueue({
3400
3403
  type: "tool-input-delta",