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