@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.
@@ -3361,7 +3361,8 @@ var OpenAIResponsesLanguageModel = class {
3361
3361
  controller.enqueue({
3362
3362
  type: "tool-input-start",
3363
3363
  id: value.item.id,
3364
- toolName: webSearchToolName != null ? webSearchToolName : "web_search"
3364
+ toolName: webSearchToolName != null ? webSearchToolName : "web_search",
3365
+ providerExecuted: true
3365
3366
  });
3366
3367
  } else if (value.item.type === "computer_call") {
3367
3368
  ongoingToolCalls[value.output_index] = {
@@ -3371,7 +3372,8 @@ var OpenAIResponsesLanguageModel = class {
3371
3372
  controller.enqueue({
3372
3373
  type: "tool-input-start",
3373
3374
  id: value.item.id,
3374
- toolName: "computer_use"
3375
+ toolName: "computer_use",
3376
+ providerExecuted: true
3375
3377
  });
3376
3378
  } else if (value.item.type === "code_interpreter_call") {
3377
3379
  ongoingToolCalls[value.output_index] = {
@@ -3384,7 +3386,8 @@ var OpenAIResponsesLanguageModel = class {
3384
3386
  controller.enqueue({
3385
3387
  type: "tool-input-start",
3386
3388
  id: value.item.id,
3387
- toolName: "code_interpreter"
3389
+ toolName: "code_interpreter",
3390
+ providerExecuted: true
3388
3391
  });
3389
3392
  controller.enqueue({
3390
3393
  type: "tool-input-delta",