@ai-sdk/anthropic 3.0.0-beta.67 → 3.0.0-beta.68

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.
@@ -2862,7 +2862,7 @@ var AnthropicMessagesLanguageModel = class {
2862
2862
  type: "tool-call",
2863
2863
  toolCallId: contentBlock.toolCallId,
2864
2864
  toolName,
2865
- input: contentBlock.input,
2865
+ input: contentBlock.input === "" ? "{}" : contentBlock.input,
2866
2866
  providerExecuted: contentBlock.providerExecuted
2867
2867
  });
2868
2868
  }