@ai-sdk/provider 3.0.0-beta.8 → 3.0.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,221 @@
1
1
  # @ai-sdk/provider
2
2
 
3
+ ## 3.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - dee8b05: ai SDK 6 beta
8
+
9
+ ### Minor Changes
10
+
11
+ - 78928cb: release: start 5.1 beta
12
+
13
+ ### Patch Changes
14
+
15
+ - 0c3b58b: fix(provider): add specificationVersion to ProviderV3
16
+ - 0adc679: feat(provider): shared spec v3
17
+ - d1bdadb: Added reranking model
18
+ - 046aa3b: feat(provider): speech model v3 spec
19
+ - 8d9e8ad: chore(provider): remove generics from EmbeddingModelV3
20
+
21
+ Before
22
+
23
+ ```ts
24
+ model.textEmbeddingModel('my-model-id');
25
+ ```
26
+
27
+ After
28
+
29
+ ```ts
30
+ model.embeddingModel('my-model-id');
31
+ ```
32
+
33
+ - dce03c4: feat: tool input examples
34
+ - 2625a04: feat(openai); update spec for mcp approval
35
+ - 37c58a0: This release introduces `wrapEmbeddingModel`, a new helper that brings embedding model customization capabilities similar to `wrapLanguageModel`.
36
+ - 2b0caef: feat(provider): add preliminary provider executed tool results to language model specification
37
+ - 954c356: feat(openai): allow custom names for provider-defined tools
38
+ - 544d4e8: chore(specification): rename v3 provider defined tool to provider tool
39
+ - 0c4822d: feat: `EmbeddingModelV3`
40
+ - 4c44a5b: fix(spec): allow `undefined` values in `JSONObject` type
41
+ - e8109d3: feat: tool execution approval
42
+ - ed329cb: feat: `Provider-V3`
43
+ - 53f3368: feat(provider): support embedding model call warnings in specification
44
+ - 3bd2689: feat: extended token usage
45
+ - bb36798: fix(spec): `LanguageModelV3ToolResult["result"]` change from `unknown` to `NonNullable<JSONValue>`
46
+ - 8dac895: feat: `LanguageModelV3`
47
+ - a755db5: feat(provider): Add SharedV3Warning type
48
+ - 475189e: chore(specification): rename EmbeddingModelCallOptions
49
+ - 457318b: chore(provider,ai): switch to SharedV3Warning and unified warnings
50
+ - b681d7d: feat: expose usage tokens for 'generateImage' function
51
+ - db913bd: fix(google): add thought signature to gemini 3 pro image parts
52
+ - 9061dc0: feat: image editing
53
+ - 366f50b: chore(provider): add deprecated textEmbeddingModel and textEmbedding aliases
54
+ - 81d4308: feat: provider-executed dynamic tools
55
+ - 9549c9e: chore(specification): extract types
56
+ - af3780b: chore(provider): remove providerExecuted from LanguageModelV3ToolResult
57
+ - 522f6b8: feat: `ImageModelV3`
58
+ - 10d819b: fix(packages/provider): fix CallWarning and allow strings as type
59
+ - 3794514: feat: flexible tool output content support
60
+ - cbf52cd: feat: expose raw finish reason
61
+ - 1bd7d32: feat: tool-specific strict mode
62
+
63
+ ## 3.0.0-beta.32
64
+
65
+ ### Patch Changes
66
+
67
+ - 475189e: chore(specification): rename EmbeddingModelCallOptions
68
+
69
+ ## 3.0.0-beta.31
70
+
71
+ ### Patch Changes
72
+
73
+ - 2625a04: feat(openai); update spec for mcp approval
74
+
75
+ ## 3.0.0-beta.30
76
+
77
+ ### Patch Changes
78
+
79
+ - cbf52cd: feat: expose raw finish reason
80
+
81
+ ## 3.0.0-beta.29
82
+
83
+ ### Patch Changes
84
+
85
+ - 9549c9e: chore(specification): extract types
86
+
87
+ ## 3.0.0-beta.28
88
+
89
+ ### Patch Changes
90
+
91
+ - 9061dc0: feat: image editing
92
+
93
+ ## 3.0.0-beta.27
94
+
95
+ ### Patch Changes
96
+
97
+ - 366f50b: chore(provider): add deprecated textEmbeddingModel and textEmbedding aliases
98
+
99
+ ## 3.0.0-beta.26
100
+
101
+ ### Patch Changes
102
+
103
+ - 3bd2689: feat: extended token usage
104
+
105
+ ## 3.0.0-beta.25
106
+
107
+ ### Patch Changes
108
+
109
+ - 53f3368: feat(provider): support embedding model call warnings in specification
110
+
111
+ ## 3.0.0-beta.24
112
+
113
+ ### Patch Changes
114
+
115
+ - dce03c4: feat: tool input examples
116
+
117
+ ## 3.0.0-beta.23
118
+
119
+ ### Patch Changes
120
+
121
+ - 1bd7d32: feat: tool-specific strict mode
122
+
123
+ ## 3.0.0-beta.22
124
+
125
+ ### Patch Changes
126
+
127
+ - 544d4e8: chore(specification): rename v3 provider defined tool to provider tool
128
+
129
+ ## 3.0.0-beta.21
130
+
131
+ ### Patch Changes
132
+
133
+ - 954c356: feat(openai): allow custom names for provider-defined tools
134
+
135
+ ## 3.0.0-beta.20
136
+
137
+ ### Patch Changes
138
+
139
+ - 457318b: chore(provider,ai): switch to SharedV3Warning and unified warnings
140
+
141
+ ## 3.0.0-beta.19
142
+
143
+ ### Patch Changes
144
+
145
+ - 8d9e8ad: chore(provider): remove generics from EmbeddingModelV3
146
+
147
+ Before
148
+
149
+ ```ts
150
+ model.textEmbeddingModel('my-model-id');
151
+ ```
152
+
153
+ After
154
+
155
+ ```ts
156
+ model.embeddingModel('my-model-id');
157
+ ```
158
+
159
+ ## 3.0.0-beta.18
160
+
161
+ ### Patch Changes
162
+
163
+ - 10d819b: fix(packages/provider): fix CallWarning and allow strings as type
164
+
165
+ ## 3.0.0-beta.17
166
+
167
+ ### Patch Changes
168
+
169
+ - db913bd: fix(google): add thought signature to gemini 3 pro image parts
170
+
171
+ ## 3.0.0-beta.16
172
+
173
+ ### Patch Changes
174
+
175
+ - b681d7d: feat: expose usage tokens for 'generateImage' function
176
+
177
+ ## 3.0.0-beta.15
178
+
179
+ ### Patch Changes
180
+
181
+ - bb36798: fix(spec): `LanguageModelV3ToolResult["result"]` change from `unknown` to `NonNullable<JSONValue>`
182
+
183
+ ## 3.0.0-beta.14
184
+
185
+ ### Patch Changes
186
+
187
+ - af3780b: chore(provider): remove providerExecuted from LanguageModelV3ToolResult
188
+
189
+ ## 3.0.0-beta.13
190
+
191
+ ### Patch Changes
192
+
193
+ - 37c58a0: This release introduces `wrapEmbeddingModel`, a new helper that brings embedding model customization capabilities similar to `wrapLanguageModel`.
194
+
195
+ ## 3.0.0-beta.12
196
+
197
+ ### Patch Changes
198
+
199
+ - d1bdadb: Added reranking model
200
+
201
+ ## 3.0.0-beta.11
202
+
203
+ ### Patch Changes
204
+
205
+ - 4c44a5b: fix(spec): allow `undefined` values in `JSONObject` type
206
+
207
+ ## 3.0.0-beta.10
208
+
209
+ ### Patch Changes
210
+
211
+ - 0c3b58b: fix(provider): add specificationVersion to ProviderV3
212
+
213
+ ## 3.0.0-beta.9
214
+
215
+ ### Patch Changes
216
+
217
+ - a755db5: feat(provider): Add SharedV3Warning type
218
+
3
219
  ## 3.0.0-beta.8
4
220
 
5
221
  ### Patch Changes