@ai-sdk/provider 3.0.0-beta.9 → 3.0.1

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