@ai-sdk/anthropic 3.0.0-beta.15 → 3.0.0-beta.16

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.
@@ -384,11 +384,11 @@ declare function prepareTools({ tools, toolChoice, disableParallelToolUse, }: {
384
384
  tools: LanguageModelV3CallOptions['tools'];
385
385
  toolChoice?: LanguageModelV3CallOptions['toolChoice'];
386
386
  disableParallelToolUse?: boolean;
387
- }): {
387
+ }): Promise<{
388
388
  tools: Array<AnthropicTool> | undefined;
389
389
  toolChoice: AnthropicToolChoice | undefined;
390
390
  toolWarnings: LanguageModelV3CallWarning[];
391
391
  betas: Set<string>;
392
- };
392
+ }>;
393
393
 
394
394
  export { AnthropicMessagesLanguageModel, type AnthropicMessagesModelId, anthropicTools, prepareTools };
@@ -384,11 +384,11 @@ declare function prepareTools({ tools, toolChoice, disableParallelToolUse, }: {
384
384
  tools: LanguageModelV3CallOptions['tools'];
385
385
  toolChoice?: LanguageModelV3CallOptions['toolChoice'];
386
386
  disableParallelToolUse?: boolean;
387
- }): {
387
+ }): Promise<{
388
388
  tools: Array<AnthropicTool> | undefined;
389
389
  toolChoice: AnthropicToolChoice | undefined;
390
390
  toolWarnings: LanguageModelV3CallWarning[];
391
391
  betas: Set<string>;
392
- };
392
+ }>;
393
393
 
394
394
  export { AnthropicMessagesLanguageModel, type AnthropicMessagesModelId, anthropicTools, prepareTools };