@ai-sdk/anthropic 3.0.90 → 3.0.92

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.
@@ -191,7 +191,7 @@ const result = streamText({
191
191
 
192
192
  ### Effort
193
193
 
194
- Anthropic introduced an `effort` option with `claude-opus-4-5` that affects thinking, text responses, and function calls. Effort defaults to `high` and you can set it to `medium` or `low` to save tokens and to lower time-to-last-token latency (TTLT). `claude-opus-4-7` additionally supports `xhigh` for maximum reasoning effort.
194
+ Anthropic introduced an `effort` option with `claude-opus-4-5` that affects thinking, text responses, and function calls. Effort defaults to `high` and you can set it to `medium` or `low` to save tokens and to lower time-to-last-token latency (TTLT). `claude-opus-4-7` and `claude-sonnet-5` additionally support `xhigh` for maximum reasoning effort.
195
195
 
196
196
  ```ts highlight="8-10"
197
197
  import { anthropic, AnthropicLanguageModelOptions } from '@ai-sdk/anthropic';
@@ -1559,6 +1559,7 @@ and the `mediaType` should be set to `'application/pdf'`.
1559
1559
 
1560
1560
  | Model | Image Input | Object Generation | Tool Usage | Computer Use | Web Search | Tool Search | Compaction |
1561
1561
  | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- | ------------------- |
1562
+ | `claude-sonnet-5` | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> |
1562
1563
  | `claude-fable-5` | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> |
1563
1564
  | `claude-opus-4-8` | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> |
1564
1565
  | `claude-opus-4-7` | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> | <Check size={18} /> |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/anthropic",
3
- "version": "3.0.90",
3
+ "version": "3.0.92",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -36,8 +36,8 @@
36
36
  }
37
37
  },
38
38
  "dependencies": {
39
- "@ai-sdk/provider": "3.0.12",
40
- "@ai-sdk/provider-utils": "4.0.33"
39
+ "@ai-sdk/provider": "3.0.13",
40
+ "@ai-sdk/provider-utils": "4.0.35"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/node": "20.17.24",
@@ -2537,7 +2537,8 @@ function getModelCapabilities(modelId: string): {
2537
2537
  if (
2538
2538
  modelId.includes('claude-opus-4-8') ||
2539
2539
  modelId.includes('claude-opus-4-7') ||
2540
- modelId.includes('claude-fable-5')
2540
+ modelId.includes('claude-fable-5') ||
2541
+ modelId.includes('claude-sonnet-5')
2541
2542
  ) {
2542
2543
  return {
2543
2544
  maxOutputTokens: 128000,
@@ -20,6 +20,7 @@ export type AnthropicMessagesModelId =
20
20
  | 'claude-opus-4-7'
21
21
  | 'claude-opus-4-8'
22
22
  | 'claude-fable-5'
23
+ | 'claude-sonnet-5'
23
24
  | (string & {});
24
25
 
25
26
  /**