@ai-sdk/openai 0.0.0-013d7476-20250808163325 → 0.0.0-2f1ae29d-20260122140908
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 +1324 -228
- package/dist/index.d.mts +832 -85
- package/dist/index.d.ts +832 -85
- package/dist/index.js +3940 -1418
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4039 -1469
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.d.mts +954 -116
- package/dist/internal/index.d.ts +954 -116
- package/dist/internal/index.js +3798 -1342
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs +3728 -1245
- package/dist/internal/index.mjs.map +1 -1
- package/docs/03-openai.mdx +2018 -0
- package/package.json +13 -6
- package/src/chat/__fixtures__/azure-model-router.1.chunks.txt +8 -0
- package/src/chat/__snapshots__/openai-chat-language-model.test.ts.snap +88 -0
- package/src/chat/convert-openai-chat-usage.ts +57 -0
- package/src/chat/convert-to-openai-chat-messages.test.ts +516 -0
- package/src/chat/convert-to-openai-chat-messages.ts +225 -0
- package/src/chat/get-response-metadata.ts +15 -0
- package/src/chat/map-openai-finish-reason.ts +19 -0
- package/src/chat/openai-chat-api.ts +198 -0
- package/src/chat/openai-chat-language-model.test.ts +3496 -0
- package/src/chat/openai-chat-language-model.ts +700 -0
- package/src/chat/openai-chat-options.ts +186 -0
- package/src/chat/openai-chat-prepare-tools.test.ts +322 -0
- package/src/chat/openai-chat-prepare-tools.ts +84 -0
- package/src/chat/openai-chat-prompt.ts +70 -0
- package/src/completion/convert-openai-completion-usage.ts +46 -0
- package/src/completion/convert-to-openai-completion-prompt.ts +93 -0
- package/src/completion/get-response-metadata.ts +15 -0
- package/src/completion/map-openai-finish-reason.ts +19 -0
- package/src/completion/openai-completion-api.ts +81 -0
- package/src/completion/openai-completion-language-model.test.ts +752 -0
- package/src/completion/openai-completion-language-model.ts +336 -0
- package/src/completion/openai-completion-options.ts +58 -0
- package/src/embedding/__snapshots__/openai-embedding-model.test.ts.snap +43 -0
- package/src/embedding/openai-embedding-api.ts +13 -0
- package/src/embedding/openai-embedding-model.test.ts +146 -0
- package/src/embedding/openai-embedding-model.ts +95 -0
- package/src/embedding/openai-embedding-options.ts +30 -0
- package/src/image/openai-image-api.ts +35 -0
- package/src/image/openai-image-model.test.ts +722 -0
- package/src/image/openai-image-model.ts +305 -0
- package/src/image/openai-image-options.ts +28 -0
- package/src/index.ts +9 -0
- package/src/internal/index.ts +19 -0
- package/src/openai-config.ts +18 -0
- package/src/openai-error.test.ts +34 -0
- package/src/openai-error.ts +22 -0
- package/src/openai-language-model-capabilities.test.ts +93 -0
- package/src/openai-language-model-capabilities.ts +54 -0
- package/src/openai-provider.test.ts +98 -0
- package/src/openai-provider.ts +270 -0
- package/src/openai-tools.ts +114 -0
- package/src/responses/__fixtures__/openai-apply-patch-tool-delete.1.chunks.txt +5 -0
- package/src/responses/__fixtures__/openai-apply-patch-tool.1.chunks.txt +38 -0
- package/src/responses/__fixtures__/openai-apply-patch-tool.1.json +69 -0
- package/src/responses/__fixtures__/openai-code-interpreter-tool.1.chunks.txt +393 -0
- package/src/responses/__fixtures__/openai-code-interpreter-tool.1.json +137 -0
- package/src/responses/__fixtures__/openai-error.1.chunks.txt +4 -0
- package/src/responses/__fixtures__/openai-error.1.json +8 -0
- package/src/responses/__fixtures__/openai-file-search-tool.1.chunks.txt +94 -0
- package/src/responses/__fixtures__/openai-file-search-tool.1.json +89 -0
- package/src/responses/__fixtures__/openai-file-search-tool.2.chunks.txt +93 -0
- package/src/responses/__fixtures__/openai-file-search-tool.2.json +112 -0
- package/src/responses/__fixtures__/openai-image-generation-tool.1.chunks.txt +16 -0
- package/src/responses/__fixtures__/openai-image-generation-tool.1.json +96 -0
- package/src/responses/__fixtures__/openai-local-shell-tool.1.chunks.txt +7 -0
- package/src/responses/__fixtures__/openai-local-shell-tool.1.json +70 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.1.chunks.txt +11 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.1.json +169 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.2.chunks.txt +123 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.2.json +176 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.3.chunks.txt +11 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.3.json +169 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.4.chunks.txt +84 -0
- package/src/responses/__fixtures__/openai-mcp-tool-approval.4.json +182 -0
- package/src/responses/__fixtures__/openai-mcp-tool.1.chunks.txt +373 -0
- package/src/responses/__fixtures__/openai-mcp-tool.1.json +159 -0
- package/src/responses/__fixtures__/openai-reasoning-encrypted-content.1.chunks.txt +110 -0
- package/src/responses/__fixtures__/openai-reasoning-encrypted-content.1.json +117 -0
- package/src/responses/__fixtures__/openai-shell-tool.1.chunks.txt +182 -0
- package/src/responses/__fixtures__/openai-shell-tool.1.json +73 -0
- package/src/responses/__fixtures__/openai-web-search-tool.1.chunks.txt +185 -0
- package/src/responses/__fixtures__/openai-web-search-tool.1.json +266 -0
- package/src/responses/__snapshots__/openai-responses-language-model.test.ts.snap +10955 -0
- package/src/responses/convert-openai-responses-usage.ts +53 -0
- package/src/responses/convert-to-openai-responses-input.test.ts +2976 -0
- package/src/responses/convert-to-openai-responses-input.ts +578 -0
- package/src/responses/map-openai-responses-finish-reason.ts +22 -0
- package/src/responses/openai-responses-api.test.ts +89 -0
- package/src/responses/openai-responses-api.ts +1086 -0
- package/src/responses/openai-responses-language-model.test.ts +6927 -0
- package/src/responses/openai-responses-language-model.ts +1932 -0
- package/src/responses/openai-responses-options.ts +312 -0
- package/src/responses/openai-responses-prepare-tools.test.ts +924 -0
- package/src/responses/openai-responses-prepare-tools.ts +264 -0
- package/src/responses/openai-responses-provider-metadata.ts +39 -0
- package/src/speech/openai-speech-api.ts +38 -0
- package/src/speech/openai-speech-model.test.ts +202 -0
- package/src/speech/openai-speech-model.ts +137 -0
- package/src/speech/openai-speech-options.ts +22 -0
- package/src/tool/apply-patch.ts +141 -0
- package/src/tool/code-interpreter.ts +104 -0
- package/src/tool/file-search.ts +145 -0
- package/src/tool/image-generation.ts +126 -0
- package/src/tool/local-shell.test-d.ts +20 -0
- package/src/tool/local-shell.ts +72 -0
- package/src/tool/mcp.ts +125 -0
- package/src/tool/shell.ts +85 -0
- package/src/tool/web-search-preview.ts +139 -0
- package/src/tool/web-search.test-d.ts +13 -0
- package/src/tool/web-search.ts +179 -0
- package/src/transcription/openai-transcription-api.ts +37 -0
- package/src/transcription/openai-transcription-model.test.ts +507 -0
- package/src/transcription/openai-transcription-model.ts +232 -0
- package/src/transcription/openai-transcription-options.ts +50 -0
- package/src/transcription/transcription-test.mp3 +0 -0
- package/src/version.ts +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,1293 @@
|
|
|
1
1
|
# @ai-sdk/openai
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-2f1ae29d-20260122140908
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 080559b: chore: add docs to package dist
|
|
8
|
+
|
|
9
|
+
## 3.0.15
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 8dc54db: chore: add src folders to package bundle
|
|
14
|
+
|
|
15
|
+
## 3.0.14
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- d21d016: feat(openai): add o4-mini model to OpenAIChatModelId type
|
|
20
|
+
|
|
21
|
+
## 3.0.13
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- 000fa96: fix(openai): filter duplicate items when passing conversationID
|
|
26
|
+
|
|
27
|
+
## 3.0.12
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- Updated dependencies [5c090e7]
|
|
32
|
+
- @ai-sdk/provider@3.0.4
|
|
33
|
+
- @ai-sdk/provider-utils@4.0.8
|
|
34
|
+
|
|
35
|
+
## 3.0.11
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- Updated dependencies [46f46e4]
|
|
40
|
+
- @ai-sdk/provider-utils@4.0.7
|
|
41
|
+
|
|
42
|
+
## 3.0.10
|
|
43
|
+
|
|
44
|
+
### Patch Changes
|
|
45
|
+
|
|
46
|
+
- Updated dependencies [1b11dcb]
|
|
47
|
+
- @ai-sdk/provider-utils@4.0.6
|
|
48
|
+
- @ai-sdk/provider@3.0.3
|
|
49
|
+
|
|
50
|
+
## 3.0.9
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- Updated dependencies [34d1c8a]
|
|
55
|
+
- @ai-sdk/provider-utils@4.0.5
|
|
56
|
+
|
|
57
|
+
## 3.0.8
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- 330bd92: Fix Responses `code_interpreter` annotations and add typed providerMetadata
|
|
62
|
+
|
|
63
|
+
- Align Responses API `code_interpreter` annotation types with the official spec.
|
|
64
|
+
- Add tests to ensure the overlapping parts of the Zod schemas used by `doGenerate` and `doStream` stay in sync.
|
|
65
|
+
- Export the following types for use in client code:
|
|
66
|
+
- `OpenaiResponsesTextProviderMetadata`
|
|
67
|
+
- `OpenaiResponsesSourceDocumentProviderMetadata`
|
|
68
|
+
- `AzureResponsesTextProviderMetadata`
|
|
69
|
+
- `AzureResponsesSourceDocumentProviderMetadata`
|
|
70
|
+
|
|
71
|
+
## 3.0.7
|
|
72
|
+
|
|
73
|
+
### Patch Changes
|
|
74
|
+
|
|
75
|
+
- 89202fb: fix(openai/azure): passing response_format correctly
|
|
76
|
+
|
|
77
|
+
## 3.0.6
|
|
78
|
+
|
|
79
|
+
### Patch Changes
|
|
80
|
+
|
|
81
|
+
- dc87517: Fix handling of `image-url` tool result content type in OpenAI Responses API conversion
|
|
82
|
+
|
|
83
|
+
## 3.0.5
|
|
84
|
+
|
|
85
|
+
### Patch Changes
|
|
86
|
+
|
|
87
|
+
- Updated dependencies [d937c8f]
|
|
88
|
+
- @ai-sdk/provider@3.0.2
|
|
89
|
+
- @ai-sdk/provider-utils@4.0.4
|
|
90
|
+
|
|
91
|
+
## 3.0.4
|
|
92
|
+
|
|
93
|
+
### Patch Changes
|
|
94
|
+
|
|
95
|
+
- Updated dependencies [0b429d4]
|
|
96
|
+
- @ai-sdk/provider-utils@4.0.3
|
|
97
|
+
|
|
98
|
+
## 3.0.3
|
|
99
|
+
|
|
100
|
+
### Patch Changes
|
|
101
|
+
|
|
102
|
+
- 55cd1a4: fix(azure): allow 'azure' as a key for providerOptions
|
|
103
|
+
|
|
104
|
+
## 3.0.2
|
|
105
|
+
|
|
106
|
+
### Patch Changes
|
|
107
|
+
|
|
108
|
+
- 863d34f: fix: trigger release to update `@latest`
|
|
109
|
+
- Updated dependencies [863d34f]
|
|
110
|
+
- @ai-sdk/provider@3.0.1
|
|
111
|
+
- @ai-sdk/provider-utils@4.0.2
|
|
112
|
+
|
|
113
|
+
## 3.0.1
|
|
114
|
+
|
|
115
|
+
### Patch Changes
|
|
116
|
+
|
|
117
|
+
- 29264a3: feat: add MCP tool approval
|
|
118
|
+
- Updated dependencies [29264a3]
|
|
119
|
+
- @ai-sdk/provider-utils@4.0.1
|
|
120
|
+
|
|
121
|
+
## 3.0.0
|
|
122
|
+
|
|
123
|
+
### Major Changes
|
|
124
|
+
|
|
125
|
+
- dee8b05: ai SDK 6 beta
|
|
126
|
+
|
|
127
|
+
### Minor Changes
|
|
128
|
+
|
|
129
|
+
- 78928cb: release: start 5.1 beta
|
|
130
|
+
|
|
131
|
+
### Patch Changes
|
|
132
|
+
|
|
133
|
+
- 0c3b58b: fix(provider): add specificationVersion to ProviderV3
|
|
134
|
+
- 4920119: fix the "incomplete_details" key from nullable to nullish for openai compatibility
|
|
135
|
+
- 0adc679: feat(provider): shared spec v3
|
|
136
|
+
- 92c6241: feat(openai): additional settings for file search tool
|
|
137
|
+
- 88fc415: feat(openai): add the new provider 'apply_patch' tool
|
|
138
|
+
- 817e601: fix(openai); fix url_citation schema in chat api
|
|
139
|
+
- dae2185: fix(openai): extract meta data from first chunk that contains any
|
|
140
|
+
- 046aa3b: feat(provider): speech model v3 spec
|
|
141
|
+
- f1277fe: feat(provider/openai): send assistant text and tool call parts as reference ids when store: true
|
|
142
|
+
- 8d9e8ad: chore(provider): remove generics from EmbeddingModelV3
|
|
143
|
+
|
|
144
|
+
Before
|
|
145
|
+
|
|
146
|
+
```ts
|
|
147
|
+
model.textEmbeddingModel('my-model-id');
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
After
|
|
151
|
+
|
|
152
|
+
```ts
|
|
153
|
+
model.embeddingModel('my-model-id');
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
- 60f4775: fix: remove code for unsuported o1-mini and o1-preview models
|
|
157
|
+
- 9a51b92: support OPENAI_BASE_URL env
|
|
158
|
+
- d64ece9: enables image_generation capabilities in the Azure provider through the Responses API.
|
|
159
|
+
- 2625a04: feat(openai); update spec for mcp approval
|
|
160
|
+
- 2e86082: feat(provider/openai): `OpenAIChatLanguageModelOptions` type
|
|
161
|
+
|
|
162
|
+
```ts
|
|
163
|
+
import { openai, type OpenAIChatLanguageModelOptions } from '@ai-sdk/openai';
|
|
164
|
+
import { generateText } from 'ai';
|
|
165
|
+
|
|
166
|
+
await generateText({
|
|
167
|
+
model: openai.chat('gpt-4o'),
|
|
168
|
+
prompt: 'Invent a new holiday and describe its traditions.',
|
|
169
|
+
providerOptions: {
|
|
170
|
+
openai: {
|
|
171
|
+
user: 'user-123',
|
|
172
|
+
} satisfies OpenAIChatLanguageModelOptions,
|
|
173
|
+
},
|
|
174
|
+
});
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
- 0877683: feat(provider/openai): support conversations api
|
|
178
|
+
- d0f1baf: feat(openai): Add support for 'promptCacheRetention: 24h' for gpt5.1 series
|
|
179
|
+
- 831b6cc: feat(openai): adding provider mcp tool for openai
|
|
180
|
+
- 95f65c2: chore: use import \* from zod/v4
|
|
181
|
+
- edc5548: feat(provider/openai): automatically add reasoning.encrypted_content include when store = false
|
|
182
|
+
- 954c356: feat(openai): allow custom names for provider-defined tools
|
|
183
|
+
- 544d4e8: chore(specification): rename v3 provider defined tool to provider tool
|
|
184
|
+
- 77f2b20: enables code_interpreter and file_search capabilities in the Azure provider through the Responses API
|
|
185
|
+
- 0c4822d: feat: `EmbeddingModelV3`
|
|
186
|
+
- 73d9883: chore(openai): enable strict json by default
|
|
187
|
+
- d2039d7: feat(provider/openai): add GPT 5.1 Codex Max to OpenAI Responses model IDs list
|
|
188
|
+
- 88edc28: feat (provider/openai): include more image generation response metadata
|
|
189
|
+
- e8109d3: feat: tool execution approval
|
|
190
|
+
- ed329cb: feat: `Provider-V3`
|
|
191
|
+
- 3bd2689: feat: extended token usage
|
|
192
|
+
- 1cad0ab: feat: add provider version to user-agent header
|
|
193
|
+
- e85fa2f: feat(openai): add sources in web-search actions
|
|
194
|
+
- 423ba08: Set the annotations from the Responses API to doStream
|
|
195
|
+
- 401f561: fix(provider/openai): fix web search tool input types
|
|
196
|
+
- 4122d2a: feat(provider/openai): add gpt-5-codex model id
|
|
197
|
+
- 0153bfa: fix(openai): fix parameter exclusion logic
|
|
198
|
+
- 8dac895: feat: `LanguageModelV3`
|
|
199
|
+
- 304222e: Add streaming support for apply_patch partial diffs.
|
|
200
|
+
- 23f132b: fix: error schema for Responses API
|
|
201
|
+
- 1d0de66: refactoring(provider/openai): simplify code
|
|
202
|
+
- 000e87b: fix(provider/openai): add providerExecuted flag to tool start chunks
|
|
203
|
+
- 2c0a758: chore(openai): add JSDoc to responses options
|
|
204
|
+
- 1b982e6: feat(openai): preserve file_id when converting file citations
|
|
205
|
+
- b82987c: feat(openai): support openai code-interpreter annotations
|
|
206
|
+
- 457318b: chore(provider,ai): switch to SharedV3Warning and unified warnings
|
|
207
|
+
- b681d7d: feat: expose usage tokens for 'generateImage' function
|
|
208
|
+
- 79b4e46: feat(openai): add 'gpt-5.1' modelID
|
|
209
|
+
- 3997a42: feat(provider/openai): local shell tool
|
|
210
|
+
- 348fd10: fix(openai): treat unknown models as reasoning
|
|
211
|
+
- 9061dc0: feat: image editing
|
|
212
|
+
- fe49278: feat(provider/openai): only send item references for reasoning when store: true
|
|
213
|
+
- cb4d238: The built in Code Interpreter tool input code is streamed in `tool-input-<start/delta/end>` chunks.
|
|
214
|
+
- 357cfd7: feat(provider/openai): add new model IDs `gpt-image-1-mini`, `gpt-5-pro`, `gpt-5-pro-2025-10-06`
|
|
215
|
+
- 38a4035: added support for external_web_access parameter on web_search tool
|
|
216
|
+
- 40d5419: feat(openai): add `o3-deep-research` and `o4-mini-deep-research` models
|
|
217
|
+
- 366f50b: chore(provider): add deprecated textEmbeddingModel and textEmbedding aliases
|
|
218
|
+
- 2b0caef: feat(provider/openai): preview image generation results
|
|
219
|
+
- b60d2e2: fix(openai): allow open_page action type url to be nullish
|
|
220
|
+
- fd47df5: fix(openai): revised_prompt sometimes returns null, causing errors
|
|
221
|
+
- 4616b86: chore: update zod peer depenedency version
|
|
222
|
+
- 7756857: fix(provider/openai): add truncation parameter support for Responses API
|
|
223
|
+
- cad6445: feat(openai); adding OpenAI's new shell tool
|
|
224
|
+
- 64aa48f: Azure OpenAI enabled web-search-preview
|
|
225
|
+
- 0b9fdd5: fix(provider/openai): end reasoning parts earlier
|
|
226
|
+
- 61c52dc: feat (provider/openai): add gpt-image-1.5 model support
|
|
227
|
+
- ef739fa: fix(openai): refactor apply-patch tool
|
|
228
|
+
- 3220329: fix openai responses input: process all provider tool outputs (shell/apply_patch) so parallel tool results aren’t dropped and apply_patch outputs are forwarded.
|
|
229
|
+
- d270a5d: chore(openai): update tests for apply-patch tool to use snapshots
|
|
230
|
+
- f18ef7f: feat(openai): add gpt-5.2 models
|
|
231
|
+
- 21e20c0: feat(provider): transcription model v3 spec
|
|
232
|
+
- 522f6b8: feat: `ImageModelV3`
|
|
233
|
+
- 484aa93: Add 'default' as service tier
|
|
234
|
+
- 88574c1: Change `isReasoningModel` detection from blocklist to allowlist and add override option
|
|
235
|
+
- 68c6187: feat(provider/openai): support file and image tool results
|
|
236
|
+
- 3794514: feat: flexible tool output content support
|
|
237
|
+
- cbf52cd: feat: expose raw finish reason
|
|
238
|
+
- 10c1322: fix: moved dependency `@ai-sdk/test-server` to devDependencies
|
|
239
|
+
- 5648ec0: Add GPT-5.2 support for non-reasoning parameters (temperature, topP, logProbs) when reasoningEffort is none.
|
|
240
|
+
- 78f813e: fix(openai): allow temperature etc setting when reasoning effort is none for gpt-5.1
|
|
241
|
+
- 40dc7fa: fix(openai): change find action type to find_in_page action type
|
|
242
|
+
- 0273b74: fix(openai): add support for sources type 'api'
|
|
243
|
+
- 5bf101a: feat(provider/openai): add support for OpenAI xhigh reasoning effort
|
|
244
|
+
- 1bd7d32: feat: tool-specific strict mode
|
|
245
|
+
- d86b52f: distinguish between OpenAI and Azure in Responses API providerMetadata
|
|
246
|
+
- 95f65c2: chore: load zod schemas lazily
|
|
247
|
+
- 59561f8: fix(openai); fix url_citation schema in chat api
|
|
248
|
+
- Updated dependencies
|
|
249
|
+
- @ai-sdk/provider@3.0.0
|
|
250
|
+
- @ai-sdk/provider-utils@4.0.0
|
|
251
|
+
|
|
252
|
+
## 3.0.0-beta.112
|
|
253
|
+
|
|
254
|
+
### Patch Changes
|
|
255
|
+
|
|
256
|
+
- Updated dependencies [475189e]
|
|
257
|
+
- @ai-sdk/provider@3.0.0-beta.32
|
|
258
|
+
- @ai-sdk/provider-utils@4.0.0-beta.59
|
|
259
|
+
|
|
260
|
+
## 3.0.0-beta.111
|
|
261
|
+
|
|
262
|
+
### Patch Changes
|
|
263
|
+
|
|
264
|
+
- 304222e: Add streaming support for apply_patch partial diffs.
|
|
265
|
+
|
|
266
|
+
## 3.0.0-beta.110
|
|
267
|
+
|
|
268
|
+
### Patch Changes
|
|
269
|
+
|
|
270
|
+
- 2625a04: feat(openai); update spec for mcp approval
|
|
271
|
+
- Updated dependencies [2625a04]
|
|
272
|
+
- @ai-sdk/provider@3.0.0-beta.31
|
|
273
|
+
- @ai-sdk/provider-utils@4.0.0-beta.58
|
|
274
|
+
|
|
275
|
+
## 3.0.0-beta.109
|
|
276
|
+
|
|
277
|
+
### Patch Changes
|
|
278
|
+
|
|
279
|
+
- cbf52cd: feat: expose raw finish reason
|
|
280
|
+
- Updated dependencies [cbf52cd]
|
|
281
|
+
- @ai-sdk/provider@3.0.0-beta.30
|
|
282
|
+
- @ai-sdk/provider-utils@4.0.0-beta.57
|
|
283
|
+
|
|
284
|
+
## 3.0.0-beta.108
|
|
285
|
+
|
|
286
|
+
### Patch Changes
|
|
287
|
+
|
|
288
|
+
- Updated dependencies [9549c9e]
|
|
289
|
+
- @ai-sdk/provider@3.0.0-beta.29
|
|
290
|
+
- @ai-sdk/provider-utils@4.0.0-beta.56
|
|
291
|
+
|
|
292
|
+
## 3.0.0-beta.107
|
|
293
|
+
|
|
294
|
+
### Patch Changes
|
|
295
|
+
|
|
296
|
+
- Updated dependencies [50b70d6]
|
|
297
|
+
- @ai-sdk/provider-utils@4.0.0-beta.55
|
|
298
|
+
|
|
299
|
+
## 3.0.0-beta.106
|
|
300
|
+
|
|
301
|
+
### Patch Changes
|
|
302
|
+
|
|
303
|
+
- 9061dc0: feat: image editing
|
|
304
|
+
- Updated dependencies [9061dc0]
|
|
305
|
+
- @ai-sdk/provider-utils@4.0.0-beta.54
|
|
306
|
+
- @ai-sdk/provider@3.0.0-beta.28
|
|
307
|
+
|
|
308
|
+
## 3.0.0-beta.105
|
|
309
|
+
|
|
310
|
+
### Patch Changes
|
|
311
|
+
|
|
312
|
+
- 88574c1: Change `isReasoningModel` detection from blocklist to allowlist and add override option
|
|
313
|
+
|
|
314
|
+
## 3.0.0-beta.104
|
|
315
|
+
|
|
316
|
+
### Patch Changes
|
|
317
|
+
|
|
318
|
+
- 61c52dc: feat (provider/openai): add gpt-image-1.5 model support
|
|
319
|
+
|
|
320
|
+
## 3.0.0-beta.103
|
|
321
|
+
|
|
322
|
+
### Patch Changes
|
|
323
|
+
|
|
324
|
+
- 366f50b: chore(provider): add deprecated textEmbeddingModel and textEmbedding aliases
|
|
325
|
+
- Updated dependencies [366f50b]
|
|
326
|
+
- @ai-sdk/provider@3.0.0-beta.27
|
|
327
|
+
- @ai-sdk/provider-utils@4.0.0-beta.53
|
|
328
|
+
|
|
329
|
+
## 3.0.0-beta.102
|
|
330
|
+
|
|
331
|
+
### Patch Changes
|
|
332
|
+
|
|
333
|
+
- Updated dependencies [763d04a]
|
|
334
|
+
- @ai-sdk/provider-utils@4.0.0-beta.52
|
|
335
|
+
|
|
336
|
+
## 3.0.0-beta.101
|
|
337
|
+
|
|
338
|
+
### Patch Changes
|
|
339
|
+
|
|
340
|
+
- 3220329: fix openai responses input: process all provider tool outputs (shell/apply_patch) so parallel tool results aren’t dropped and apply_patch outputs are forwarded.
|
|
341
|
+
- 5648ec0: Add GPT-5.2 support for non-reasoning parameters (temperature, topP, logProbs) when reasoningEffort is none.
|
|
342
|
+
|
|
343
|
+
## 3.0.0-beta.100
|
|
344
|
+
|
|
345
|
+
### Patch Changes
|
|
346
|
+
|
|
347
|
+
- Updated dependencies [c1efac4]
|
|
348
|
+
- @ai-sdk/provider-utils@4.0.0-beta.51
|
|
349
|
+
|
|
350
|
+
## 3.0.0-beta.99
|
|
351
|
+
|
|
352
|
+
### Patch Changes
|
|
353
|
+
|
|
354
|
+
- Updated dependencies [32223c8]
|
|
355
|
+
- @ai-sdk/provider-utils@4.0.0-beta.50
|
|
356
|
+
|
|
357
|
+
## 3.0.0-beta.98
|
|
358
|
+
|
|
359
|
+
### Patch Changes
|
|
360
|
+
|
|
361
|
+
- Updated dependencies [83e5744]
|
|
362
|
+
- @ai-sdk/provider-utils@4.0.0-beta.49
|
|
363
|
+
|
|
364
|
+
## 3.0.0-beta.97
|
|
365
|
+
|
|
366
|
+
### Patch Changes
|
|
367
|
+
|
|
368
|
+
- Updated dependencies [960ec8f]
|
|
369
|
+
- @ai-sdk/provider-utils@4.0.0-beta.48
|
|
370
|
+
|
|
371
|
+
## 3.0.0-beta.96
|
|
372
|
+
|
|
373
|
+
### Patch Changes
|
|
374
|
+
|
|
375
|
+
- 817e601: fix(openai); fix url_citation schema in chat api
|
|
376
|
+
- 59561f8: fix(openai); fix url_citation schema in chat api
|
|
377
|
+
|
|
378
|
+
## 3.0.0-beta.95
|
|
379
|
+
|
|
380
|
+
### Patch Changes
|
|
381
|
+
|
|
382
|
+
- 40dc7fa: fix(openai): change find action type to find_in_page action type
|
|
383
|
+
|
|
384
|
+
## 3.0.0-beta.94
|
|
385
|
+
|
|
386
|
+
### Patch Changes
|
|
387
|
+
|
|
388
|
+
- f18ef7f: feat(openai): add gpt-5.2 models
|
|
389
|
+
|
|
390
|
+
## 3.0.0-beta.93
|
|
391
|
+
|
|
392
|
+
### Patch Changes
|
|
393
|
+
|
|
394
|
+
- d2039d7: feat(provider/openai): add GPT 5.1 Codex Max to OpenAI Responses model IDs list
|
|
395
|
+
|
|
396
|
+
## 3.0.0-beta.92
|
|
397
|
+
|
|
398
|
+
### Patch Changes
|
|
399
|
+
|
|
400
|
+
- 5bf101a: feat(provider/openai): add support for OpenAI xhigh reasoning effort
|
|
401
|
+
|
|
402
|
+
## 3.0.0-beta.91
|
|
403
|
+
|
|
404
|
+
### Patch Changes
|
|
405
|
+
|
|
406
|
+
- Updated dependencies [e9e157f]
|
|
407
|
+
- @ai-sdk/provider-utils@4.0.0-beta.47
|
|
408
|
+
|
|
409
|
+
## 3.0.0-beta.90
|
|
410
|
+
|
|
411
|
+
### Patch Changes
|
|
412
|
+
|
|
413
|
+
- Updated dependencies [81e29ab]
|
|
414
|
+
- @ai-sdk/provider-utils@4.0.0-beta.46
|
|
415
|
+
|
|
416
|
+
## 3.0.0-beta.89
|
|
417
|
+
|
|
418
|
+
### Patch Changes
|
|
419
|
+
|
|
420
|
+
- 3bd2689: feat: extended token usage
|
|
421
|
+
- Updated dependencies [3bd2689]
|
|
422
|
+
- @ai-sdk/provider@3.0.0-beta.26
|
|
423
|
+
- @ai-sdk/provider-utils@4.0.0-beta.45
|
|
424
|
+
|
|
425
|
+
## 3.0.0-beta.88
|
|
426
|
+
|
|
427
|
+
### Patch Changes
|
|
428
|
+
|
|
429
|
+
- 92c6241: feat(openai): additional settings for file search tool
|
|
430
|
+
|
|
431
|
+
## 3.0.0-beta.87
|
|
432
|
+
|
|
433
|
+
### Patch Changes
|
|
434
|
+
|
|
435
|
+
- Updated dependencies [53f3368]
|
|
436
|
+
- @ai-sdk/provider@3.0.0-beta.25
|
|
437
|
+
- @ai-sdk/provider-utils@4.0.0-beta.44
|
|
438
|
+
|
|
439
|
+
## 3.0.0-beta.86
|
|
440
|
+
|
|
441
|
+
### Patch Changes
|
|
442
|
+
|
|
443
|
+
- 0153bfa: fix(openai): fix parameter exclusion logic
|
|
444
|
+
|
|
445
|
+
## 3.0.0-beta.85
|
|
446
|
+
|
|
447
|
+
### Patch Changes
|
|
448
|
+
|
|
449
|
+
- 78f813e: fix(openai): allow temperature etc setting when reasoning effort is none for gpt-5.1
|
|
450
|
+
|
|
451
|
+
## 3.0.0-beta.84
|
|
452
|
+
|
|
453
|
+
### Patch Changes
|
|
454
|
+
|
|
455
|
+
- Updated dependencies [dce03c4]
|
|
456
|
+
- @ai-sdk/provider-utils@4.0.0-beta.43
|
|
457
|
+
- @ai-sdk/provider@3.0.0-beta.24
|
|
458
|
+
|
|
459
|
+
## 3.0.0-beta.83
|
|
460
|
+
|
|
461
|
+
### Patch Changes
|
|
462
|
+
|
|
463
|
+
- ef739fa: fix(openai): refactor apply-patch tool
|
|
464
|
+
|
|
465
|
+
## 3.0.0-beta.82
|
|
466
|
+
|
|
467
|
+
### Patch Changes
|
|
468
|
+
|
|
469
|
+
- Updated dependencies [3ed5519]
|
|
470
|
+
- @ai-sdk/provider-utils@4.0.0-beta.42
|
|
471
|
+
|
|
472
|
+
## 3.0.0-beta.81
|
|
473
|
+
|
|
474
|
+
### Patch Changes
|
|
475
|
+
|
|
476
|
+
- cad6445: feat(openai); adding OpenAI's new shell tool
|
|
477
|
+
|
|
478
|
+
## 3.0.0-beta.80
|
|
479
|
+
|
|
480
|
+
### Patch Changes
|
|
481
|
+
|
|
482
|
+
- b60d2e2: fix(openai): allow open_page action type url to be nullish
|
|
483
|
+
|
|
484
|
+
## 3.0.0-beta.79
|
|
485
|
+
|
|
486
|
+
### Patch Changes
|
|
487
|
+
|
|
488
|
+
- 1bd7d32: feat: tool-specific strict mode
|
|
489
|
+
- Updated dependencies [1bd7d32]
|
|
490
|
+
- @ai-sdk/provider-utils@4.0.0-beta.41
|
|
491
|
+
- @ai-sdk/provider@3.0.0-beta.23
|
|
492
|
+
|
|
493
|
+
## 3.0.0-beta.78
|
|
494
|
+
|
|
495
|
+
### Patch Changes
|
|
496
|
+
|
|
497
|
+
- 2c0a758: chore(openai): add JSDoc to responses options
|
|
498
|
+
|
|
499
|
+
## 3.0.0-beta.77
|
|
500
|
+
|
|
501
|
+
### Patch Changes
|
|
502
|
+
|
|
503
|
+
- d270a5d: chore(openai): update tests for apply-patch tool to use snapshots
|
|
504
|
+
|
|
505
|
+
## 3.0.0-beta.76
|
|
506
|
+
|
|
507
|
+
### Patch Changes
|
|
508
|
+
|
|
509
|
+
- 88edc28: feat (provider/openai): include more image generation response metadata
|
|
510
|
+
|
|
511
|
+
## 3.0.0-beta.75
|
|
512
|
+
|
|
513
|
+
### Patch Changes
|
|
514
|
+
|
|
515
|
+
- 73d9883: chore(openai): enable strict json by default
|
|
516
|
+
|
|
517
|
+
## 3.0.0-beta.74
|
|
518
|
+
|
|
519
|
+
### Patch Changes
|
|
520
|
+
|
|
521
|
+
- 88fc415: feat(openai): add the new provider 'apply_patch' tool
|
|
522
|
+
|
|
523
|
+
## 3.0.0-beta.73
|
|
524
|
+
|
|
525
|
+
### Patch Changes
|
|
526
|
+
|
|
527
|
+
- 544d4e8: chore(specification): rename v3 provider defined tool to provider tool
|
|
528
|
+
- Updated dependencies [544d4e8]
|
|
529
|
+
- @ai-sdk/provider-utils@4.0.0-beta.40
|
|
530
|
+
- @ai-sdk/provider@3.0.0-beta.22
|
|
531
|
+
|
|
532
|
+
## 3.0.0-beta.72
|
|
533
|
+
|
|
534
|
+
### Patch Changes
|
|
535
|
+
|
|
536
|
+
- 954c356: feat(openai): allow custom names for provider-defined tools
|
|
537
|
+
- Updated dependencies [954c356]
|
|
538
|
+
- @ai-sdk/provider-utils@4.0.0-beta.39
|
|
539
|
+
- @ai-sdk/provider@3.0.0-beta.21
|
|
540
|
+
|
|
541
|
+
## 3.0.0-beta.71
|
|
542
|
+
|
|
543
|
+
### Patch Changes
|
|
544
|
+
|
|
545
|
+
- Updated dependencies [03849b0]
|
|
546
|
+
- @ai-sdk/provider-utils@4.0.0-beta.38
|
|
547
|
+
|
|
548
|
+
## 3.0.0-beta.70
|
|
549
|
+
|
|
550
|
+
### Patch Changes
|
|
551
|
+
|
|
552
|
+
- 457318b: chore(provider,ai): switch to SharedV3Warning and unified warnings
|
|
553
|
+
- Updated dependencies [457318b]
|
|
554
|
+
- @ai-sdk/provider@3.0.0-beta.20
|
|
555
|
+
- @ai-sdk/provider-utils@4.0.0-beta.37
|
|
556
|
+
|
|
557
|
+
## 3.0.0-beta.69
|
|
558
|
+
|
|
559
|
+
### Patch Changes
|
|
560
|
+
|
|
561
|
+
- 1d0de66: refactoring(provider/openai): simplify code
|
|
562
|
+
|
|
563
|
+
## 3.0.0-beta.68
|
|
564
|
+
|
|
565
|
+
### Patch Changes
|
|
566
|
+
|
|
567
|
+
- 8d9e8ad: chore(provider): remove generics from EmbeddingModelV3
|
|
568
|
+
|
|
569
|
+
Before
|
|
570
|
+
|
|
571
|
+
```ts
|
|
572
|
+
model.textEmbeddingModel('my-model-id');
|
|
573
|
+
```
|
|
574
|
+
|
|
575
|
+
After
|
|
576
|
+
|
|
577
|
+
```ts
|
|
578
|
+
model.embeddingModel('my-model-id');
|
|
579
|
+
```
|
|
580
|
+
|
|
581
|
+
- Updated dependencies [8d9e8ad]
|
|
582
|
+
- @ai-sdk/provider@3.0.0-beta.19
|
|
583
|
+
- @ai-sdk/provider-utils@4.0.0-beta.36
|
|
584
|
+
|
|
585
|
+
## 3.0.0-beta.67
|
|
586
|
+
|
|
587
|
+
### Patch Changes
|
|
588
|
+
|
|
589
|
+
- Updated dependencies [10d819b]
|
|
590
|
+
- @ai-sdk/provider@3.0.0-beta.18
|
|
591
|
+
- @ai-sdk/provider-utils@4.0.0-beta.35
|
|
592
|
+
|
|
593
|
+
## 3.0.0-beta.66
|
|
594
|
+
|
|
595
|
+
### Patch Changes
|
|
596
|
+
|
|
597
|
+
- d86b52f: distinguish between OpenAI and Azure in Responses API providerMetadata
|
|
598
|
+
|
|
599
|
+
## 3.0.0-beta.65
|
|
600
|
+
|
|
601
|
+
### Patch Changes
|
|
602
|
+
|
|
603
|
+
- 38a4035: added support for external_web_access parameter on web_search tool
|
|
604
|
+
|
|
605
|
+
## 3.0.0-beta.64
|
|
606
|
+
|
|
607
|
+
### Patch Changes
|
|
608
|
+
|
|
609
|
+
- Updated dependencies [db913bd]
|
|
610
|
+
- @ai-sdk/provider@3.0.0-beta.17
|
|
611
|
+
- @ai-sdk/provider-utils@4.0.0-beta.34
|
|
612
|
+
|
|
613
|
+
## 3.0.0-beta.63
|
|
614
|
+
|
|
615
|
+
### Patch Changes
|
|
616
|
+
|
|
617
|
+
- 423ba08: Set the annotations from the Responses API to doStream
|
|
618
|
+
|
|
619
|
+
## 3.0.0-beta.62
|
|
620
|
+
|
|
621
|
+
### Patch Changes
|
|
622
|
+
|
|
623
|
+
- 64aa48f: Azure OpenAI enabled web-search-preview
|
|
624
|
+
|
|
625
|
+
## 3.0.0-beta.61
|
|
626
|
+
|
|
627
|
+
### Patch Changes
|
|
628
|
+
|
|
629
|
+
- 23f132b: fix: error schema for Responses API
|
|
630
|
+
|
|
631
|
+
## 3.0.0-beta.60
|
|
632
|
+
|
|
633
|
+
### Patch Changes
|
|
634
|
+
|
|
635
|
+
- 0877683: feat(provider/openai): support conversations api
|
|
636
|
+
|
|
637
|
+
## 3.0.0-beta.59
|
|
638
|
+
|
|
639
|
+
### Patch Changes
|
|
640
|
+
|
|
641
|
+
- d0f1baf: feat(openai): Add support for 'promptCacheRetention: 24h' for gpt5.1 series
|
|
642
|
+
|
|
643
|
+
## 3.0.0-beta.58
|
|
644
|
+
|
|
645
|
+
### Patch Changes
|
|
646
|
+
|
|
647
|
+
- 79b4e46: feat(openai): add 'gpt-5.1' modelID
|
|
648
|
+
|
|
649
|
+
## 3.0.0-beta.57
|
|
650
|
+
|
|
651
|
+
### Patch Changes
|
|
652
|
+
|
|
653
|
+
- b681d7d: feat: expose usage tokens for 'generateImage' function
|
|
654
|
+
- Updated dependencies [b681d7d]
|
|
655
|
+
- @ai-sdk/provider@3.0.0-beta.16
|
|
656
|
+
- @ai-sdk/provider-utils@4.0.0-beta.33
|
|
657
|
+
|
|
658
|
+
## 3.0.0-beta.56
|
|
659
|
+
|
|
660
|
+
### Patch Changes
|
|
661
|
+
|
|
662
|
+
- Updated dependencies [32d8dbb]
|
|
663
|
+
- @ai-sdk/provider-utils@4.0.0-beta.32
|
|
664
|
+
|
|
665
|
+
## 3.0.0-beta.55
|
|
666
|
+
|
|
667
|
+
### Patch Changes
|
|
668
|
+
|
|
669
|
+
- 831b6cc: feat(openai): adding provider mcp tool for openai
|
|
670
|
+
|
|
671
|
+
## 3.0.0-beta.54
|
|
672
|
+
|
|
673
|
+
### Patch Changes
|
|
674
|
+
|
|
675
|
+
- 40d5419: feat(openai): add `o3-deep-research` and `o4-mini-deep-research` models
|
|
676
|
+
|
|
677
|
+
## 3.0.0-beta.53
|
|
678
|
+
|
|
679
|
+
### Patch Changes
|
|
680
|
+
|
|
681
|
+
- dae2185: fix(openai): extract meta data from first chunk that contains any
|
|
682
|
+
|
|
683
|
+
## 3.0.0-beta.52
|
|
684
|
+
|
|
685
|
+
### Patch Changes
|
|
686
|
+
|
|
687
|
+
- 348fd10: fix(openai): treat unknown models as reasoning
|
|
688
|
+
|
|
689
|
+
## 3.0.0-beta.51
|
|
690
|
+
|
|
691
|
+
### Patch Changes
|
|
692
|
+
|
|
693
|
+
- b82987c: feat(openai): support openai code-interpreter annotations
|
|
694
|
+
|
|
695
|
+
## 3.0.0-beta.50
|
|
696
|
+
|
|
697
|
+
### Patch Changes
|
|
698
|
+
|
|
699
|
+
- Updated dependencies [bb36798]
|
|
700
|
+
- @ai-sdk/provider@3.0.0-beta.15
|
|
701
|
+
- @ai-sdk/provider-utils@4.0.0-beta.31
|
|
702
|
+
|
|
703
|
+
## 3.0.0-beta.49
|
|
704
|
+
|
|
705
|
+
### Patch Changes
|
|
706
|
+
|
|
707
|
+
- 0273b74: fix(openai): add support for sources type 'api'
|
|
708
|
+
|
|
709
|
+
## 3.0.0-beta.48
|
|
710
|
+
|
|
711
|
+
### Patch Changes
|
|
712
|
+
|
|
713
|
+
- 60f4775: fix: remove code for unsuported o1-mini and o1-preview models
|
|
714
|
+
|
|
715
|
+
## 3.0.0-beta.47
|
|
716
|
+
|
|
717
|
+
### Patch Changes
|
|
718
|
+
|
|
719
|
+
- Updated dependencies [4f16c37]
|
|
720
|
+
- @ai-sdk/provider-utils@4.0.0-beta.30
|
|
721
|
+
|
|
722
|
+
## 3.0.0-beta.46
|
|
723
|
+
|
|
724
|
+
### Patch Changes
|
|
725
|
+
|
|
726
|
+
- Updated dependencies [af3780b]
|
|
727
|
+
- @ai-sdk/provider@3.0.0-beta.14
|
|
728
|
+
- @ai-sdk/provider-utils@4.0.0-beta.29
|
|
729
|
+
|
|
730
|
+
## 3.0.0-beta.45
|
|
731
|
+
|
|
732
|
+
### Patch Changes
|
|
733
|
+
|
|
734
|
+
- fd47df5: fix(openai): revised_prompt sometimes returns null, causing errors
|
|
735
|
+
|
|
736
|
+
## 3.0.0-beta.44
|
|
737
|
+
|
|
738
|
+
### Patch Changes
|
|
739
|
+
|
|
740
|
+
- Updated dependencies [016b111]
|
|
741
|
+
- @ai-sdk/provider-utils@4.0.0-beta.28
|
|
742
|
+
|
|
743
|
+
## 3.0.0-beta.43
|
|
744
|
+
|
|
745
|
+
### Patch Changes
|
|
746
|
+
|
|
747
|
+
- Updated dependencies [37c58a0]
|
|
748
|
+
- @ai-sdk/provider@3.0.0-beta.13
|
|
749
|
+
- @ai-sdk/provider-utils@4.0.0-beta.27
|
|
750
|
+
|
|
751
|
+
## 3.0.0-beta.42
|
|
752
|
+
|
|
753
|
+
### Patch Changes
|
|
754
|
+
|
|
755
|
+
- Updated dependencies [d1bdadb]
|
|
756
|
+
- @ai-sdk/provider@3.0.0-beta.12
|
|
757
|
+
- @ai-sdk/provider-utils@4.0.0-beta.26
|
|
758
|
+
|
|
759
|
+
## 3.0.0-beta.41
|
|
760
|
+
|
|
761
|
+
### Patch Changes
|
|
762
|
+
|
|
763
|
+
- Updated dependencies [4c44a5b]
|
|
764
|
+
- @ai-sdk/provider@3.0.0-beta.11
|
|
765
|
+
- @ai-sdk/provider-utils@4.0.0-beta.25
|
|
766
|
+
|
|
767
|
+
## 3.0.0-beta.40
|
|
768
|
+
|
|
769
|
+
### Patch Changes
|
|
770
|
+
|
|
771
|
+
- 1b982e6: feat(openai): preserve file_id when converting file citations
|
|
772
|
+
|
|
773
|
+
## 3.0.0-beta.39
|
|
774
|
+
|
|
775
|
+
### Patch Changes
|
|
776
|
+
|
|
777
|
+
- 0c3b58b: fix(provider): add specificationVersion to ProviderV3
|
|
778
|
+
- Updated dependencies [0c3b58b]
|
|
779
|
+
- @ai-sdk/provider@3.0.0-beta.10
|
|
780
|
+
- @ai-sdk/provider-utils@4.0.0-beta.24
|
|
781
|
+
|
|
782
|
+
## 3.0.0-beta.38
|
|
783
|
+
|
|
784
|
+
### Patch Changes
|
|
785
|
+
|
|
786
|
+
- Updated dependencies [a755db5]
|
|
787
|
+
- @ai-sdk/provider@3.0.0-beta.9
|
|
788
|
+
- @ai-sdk/provider-utils@4.0.0-beta.23
|
|
789
|
+
|
|
790
|
+
## 3.0.0-beta.37
|
|
791
|
+
|
|
792
|
+
### Patch Changes
|
|
793
|
+
|
|
794
|
+
- e85fa2f: feat(openai): add sources in web-search actions
|
|
795
|
+
|
|
796
|
+
## 3.0.0-beta.36
|
|
797
|
+
|
|
798
|
+
### Patch Changes
|
|
799
|
+
|
|
800
|
+
- Updated dependencies [58920e0]
|
|
801
|
+
- @ai-sdk/provider-utils@4.0.0-beta.22
|
|
802
|
+
|
|
803
|
+
## 3.0.0-beta.35
|
|
804
|
+
|
|
805
|
+
### Patch Changes
|
|
806
|
+
|
|
807
|
+
- Updated dependencies [293a6b7]
|
|
808
|
+
- @ai-sdk/provider-utils@4.0.0-beta.21
|
|
809
|
+
|
|
810
|
+
## 3.0.0-beta.34
|
|
811
|
+
|
|
812
|
+
### Patch Changes
|
|
813
|
+
|
|
814
|
+
- Updated dependencies [fca786b]
|
|
815
|
+
- @ai-sdk/provider-utils@4.0.0-beta.20
|
|
816
|
+
|
|
817
|
+
## 3.0.0-beta.33
|
|
818
|
+
|
|
819
|
+
### Patch Changes
|
|
820
|
+
|
|
821
|
+
- 7756857: fix(provider/openai): add truncation parameter support for Responses API
|
|
822
|
+
|
|
823
|
+
## 3.0.0-beta.32
|
|
824
|
+
|
|
825
|
+
### Patch Changes
|
|
826
|
+
|
|
827
|
+
- 3794514: feat: flexible tool output content support
|
|
828
|
+
- Updated dependencies [3794514]
|
|
829
|
+
- @ai-sdk/provider-utils@4.0.0-beta.19
|
|
830
|
+
- @ai-sdk/provider@3.0.0-beta.8
|
|
831
|
+
|
|
832
|
+
## 3.0.0-beta.31
|
|
833
|
+
|
|
834
|
+
### Patch Changes
|
|
835
|
+
|
|
836
|
+
- Updated dependencies [81d4308]
|
|
837
|
+
- @ai-sdk/provider@3.0.0-beta.7
|
|
838
|
+
- @ai-sdk/provider-utils@4.0.0-beta.18
|
|
839
|
+
|
|
840
|
+
## 3.0.0-beta.30
|
|
841
|
+
|
|
842
|
+
### Patch Changes
|
|
843
|
+
|
|
844
|
+
- Updated dependencies [703459a]
|
|
845
|
+
- @ai-sdk/provider-utils@4.0.0-beta.17
|
|
846
|
+
|
|
847
|
+
## 3.0.0-beta.29
|
|
848
|
+
|
|
849
|
+
### Patch Changes
|
|
850
|
+
|
|
851
|
+
- 0b9fdd5: fix(provider/openai): end reasoning parts earlier
|
|
852
|
+
|
|
853
|
+
## 3.0.0-beta.28
|
|
854
|
+
|
|
855
|
+
### Patch Changes
|
|
856
|
+
|
|
857
|
+
- 401f561: fix(provider/openai): fix web search tool input types
|
|
858
|
+
|
|
859
|
+
## 3.0.0-beta.27
|
|
860
|
+
|
|
861
|
+
### Patch Changes
|
|
862
|
+
|
|
863
|
+
- f1277fe: feat(provider/openai): send assistant text and tool call parts as reference ids when store: true
|
|
864
|
+
|
|
865
|
+
## 3.0.0-beta.26
|
|
866
|
+
|
|
867
|
+
### Patch Changes
|
|
868
|
+
|
|
869
|
+
- edc5548: feat(provider/openai): automatically add reasoning.encrypted_content include when store = false
|
|
870
|
+
|
|
871
|
+
## 3.0.0-beta.25
|
|
872
|
+
|
|
873
|
+
### Patch Changes
|
|
874
|
+
|
|
875
|
+
- Updated dependencies [6306603]
|
|
876
|
+
- @ai-sdk/provider-utils@4.0.0-beta.16
|
|
877
|
+
|
|
878
|
+
## 3.0.0-beta.24
|
|
879
|
+
|
|
880
|
+
### Patch Changes
|
|
881
|
+
|
|
882
|
+
- Updated dependencies [f0b2157]
|
|
883
|
+
- @ai-sdk/provider-utils@4.0.0-beta.15
|
|
884
|
+
|
|
885
|
+
## 3.0.0-beta.23
|
|
886
|
+
|
|
887
|
+
### Patch Changes
|
|
888
|
+
|
|
889
|
+
- Updated dependencies [3b1d015]
|
|
890
|
+
- @ai-sdk/provider-utils@4.0.0-beta.14
|
|
891
|
+
|
|
892
|
+
## 3.0.0-beta.22
|
|
893
|
+
|
|
894
|
+
### Patch Changes
|
|
895
|
+
|
|
896
|
+
- Updated dependencies [d116b4b]
|
|
897
|
+
- @ai-sdk/provider-utils@4.0.0-beta.13
|
|
898
|
+
|
|
899
|
+
## 3.0.0-beta.21
|
|
900
|
+
|
|
901
|
+
### Patch Changes
|
|
902
|
+
|
|
903
|
+
- Updated dependencies [7e32fea]
|
|
904
|
+
- @ai-sdk/provider-utils@4.0.0-beta.12
|
|
905
|
+
|
|
906
|
+
## 3.0.0-beta.20
|
|
907
|
+
|
|
908
|
+
### Patch Changes
|
|
909
|
+
|
|
910
|
+
- 68c6187: feat(provider/openai): support file and image tool results
|
|
911
|
+
|
|
912
|
+
## 3.0.0-beta.19
|
|
913
|
+
|
|
914
|
+
### Patch Changes
|
|
915
|
+
|
|
916
|
+
- 484aa93: Add 'default' as service tier
|
|
917
|
+
|
|
918
|
+
## 3.0.0-beta.18
|
|
919
|
+
|
|
920
|
+
### Patch Changes
|
|
921
|
+
|
|
922
|
+
- 95f65c2: chore: use import \* from zod/v4
|
|
923
|
+
- 95f65c2: chore: load zod schemas lazily
|
|
924
|
+
- Updated dependencies
|
|
925
|
+
- @ai-sdk/provider-utils@4.0.0-beta.11
|
|
926
|
+
|
|
927
|
+
## 3.0.0-beta.17
|
|
928
|
+
|
|
929
|
+
### Major Changes
|
|
930
|
+
|
|
931
|
+
- dee8b05: ai SDK 6 beta
|
|
932
|
+
|
|
933
|
+
### Patch Changes
|
|
934
|
+
|
|
935
|
+
- Updated dependencies [dee8b05]
|
|
936
|
+
- @ai-sdk/provider@3.0.0-beta.6
|
|
937
|
+
- @ai-sdk/provider-utils@4.0.0-beta.10
|
|
938
|
+
|
|
939
|
+
## 2.1.0-beta.16
|
|
940
|
+
|
|
941
|
+
### Patch Changes
|
|
942
|
+
|
|
943
|
+
- Updated dependencies [521c537]
|
|
944
|
+
- @ai-sdk/provider-utils@3.1.0-beta.9
|
|
945
|
+
|
|
946
|
+
## 2.1.0-beta.15
|
|
947
|
+
|
|
948
|
+
### Patch Changes
|
|
949
|
+
|
|
950
|
+
- Updated dependencies [e06565c]
|
|
951
|
+
- @ai-sdk/provider-utils@3.1.0-beta.8
|
|
952
|
+
|
|
953
|
+
## 2.1.0-beta.14
|
|
954
|
+
|
|
955
|
+
### Patch Changes
|
|
956
|
+
|
|
957
|
+
- 000e87b: fix(provider/openai): add providerExecuted flag to tool start chunks
|
|
958
|
+
|
|
959
|
+
## 2.1.0-beta.13
|
|
960
|
+
|
|
961
|
+
### Patch Changes
|
|
962
|
+
|
|
963
|
+
- 357cfd7: feat(provider/openai): add new model IDs `gpt-image-1-mini`, `gpt-5-pro`, `gpt-5-pro-2025-10-06`
|
|
964
|
+
|
|
965
|
+
## 2.1.0-beta.12
|
|
966
|
+
|
|
967
|
+
### Patch Changes
|
|
968
|
+
|
|
969
|
+
- 046aa3b: feat(provider): speech model v3 spec
|
|
970
|
+
- e8109d3: feat: tool execution approval
|
|
971
|
+
- 21e20c0: feat(provider): transcription model v3 spec
|
|
972
|
+
- Updated dependencies
|
|
973
|
+
- @ai-sdk/provider@2.1.0-beta.5
|
|
974
|
+
- @ai-sdk/provider-utils@3.1.0-beta.7
|
|
975
|
+
|
|
976
|
+
## 2.1.0-beta.11
|
|
977
|
+
|
|
978
|
+
### Patch Changes
|
|
979
|
+
|
|
980
|
+
- 0adc679: feat(provider): shared spec v3
|
|
981
|
+
- 2b0caef: feat(provider/openai): preview image generation results
|
|
982
|
+
- Updated dependencies
|
|
983
|
+
- @ai-sdk/provider-utils@3.1.0-beta.6
|
|
984
|
+
- @ai-sdk/provider@2.1.0-beta.4
|
|
985
|
+
|
|
986
|
+
## 2.1.0-beta.10
|
|
987
|
+
|
|
988
|
+
### Patch Changes
|
|
989
|
+
|
|
990
|
+
- d64ece9: enables image_generation capabilities in the Azure provider through the Responses API.
|
|
991
|
+
|
|
992
|
+
## 2.1.0-beta.9
|
|
993
|
+
|
|
994
|
+
### Patch Changes
|
|
995
|
+
|
|
996
|
+
- 9a51b92: support OPENAI_BASE_URL env
|
|
997
|
+
|
|
998
|
+
## 2.1.0-beta.8
|
|
999
|
+
|
|
1000
|
+
### Patch Changes
|
|
1001
|
+
|
|
1002
|
+
- 4122d2a: feat(provider/openai): add gpt-5-codex model id
|
|
1003
|
+
- 3997a42: feat(provider/openai): local shell tool
|
|
1004
|
+
- cb4d238: The built in Code Interpreter tool input code is streamed in `tool-input-<start/delta/end>` chunks.
|
|
1005
|
+
|
|
1006
|
+
## 2.1.0-beta.7
|
|
1007
|
+
|
|
1008
|
+
### Patch Changes
|
|
1009
|
+
|
|
1010
|
+
- 77f2b20: enables code_interpreter and file_search capabilities in the Azure provider through the Responses API
|
|
1011
|
+
- 8dac895: feat: `LanguageModelV3`
|
|
1012
|
+
- 10c1322: fix: moved dependency `@ai-sdk/test-server` to devDependencies
|
|
1013
|
+
- Updated dependencies [8dac895]
|
|
1014
|
+
- @ai-sdk/provider-utils@3.1.0-beta.5
|
|
1015
|
+
- @ai-sdk/provider@2.1.0-beta.3
|
|
1016
|
+
|
|
1017
|
+
## 2.1.0-beta.6
|
|
1018
|
+
|
|
1019
|
+
### Patch Changes
|
|
1020
|
+
|
|
1021
|
+
- fe49278: feat(provider/openai): only send item references for reasoning when store: true
|
|
1022
|
+
|
|
1023
|
+
## 2.1.0-beta.5
|
|
1024
|
+
|
|
1025
|
+
### Patch Changes
|
|
1026
|
+
|
|
1027
|
+
- 4616b86: chore: update zod peer depenedency version
|
|
1028
|
+
- Updated dependencies [4616b86]
|
|
1029
|
+
- @ai-sdk/provider-utils@3.1.0-beta.4
|
|
1030
|
+
|
|
1031
|
+
## 2.1.0-beta.4
|
|
1032
|
+
|
|
1033
|
+
### Patch Changes
|
|
1034
|
+
|
|
1035
|
+
- ed329cb: feat: `Provider-V3`
|
|
1036
|
+
- 522f6b8: feat: `ImageModelV3`
|
|
1037
|
+
- Updated dependencies
|
|
1038
|
+
- @ai-sdk/provider@2.1.0-beta.2
|
|
1039
|
+
- @ai-sdk/provider-utils@3.1.0-beta.3
|
|
1040
|
+
|
|
1041
|
+
## 2.1.0-beta.3
|
|
1042
|
+
|
|
1043
|
+
### Patch Changes
|
|
1044
|
+
|
|
1045
|
+
- 2e86082: feat(provider/openai): `OpenAIChatLanguageModelOptions` type
|
|
1046
|
+
|
|
1047
|
+
```ts
|
|
1048
|
+
import { openai, type OpenAIChatLanguageModelOptions } from '@ai-sdk/openai';
|
|
1049
|
+
import { generateText } from 'ai';
|
|
1050
|
+
|
|
1051
|
+
await generateText({
|
|
1052
|
+
model: openai.chat('gpt-4o'),
|
|
1053
|
+
prompt: 'Invent a new holiday and describe its traditions.',
|
|
1054
|
+
providerOptions: {
|
|
1055
|
+
openai: {
|
|
1056
|
+
user: 'user-123',
|
|
1057
|
+
} satisfies OpenAIChatLanguageModelOptions,
|
|
1058
|
+
},
|
|
1059
|
+
});
|
|
1060
|
+
```
|
|
1061
|
+
|
|
1062
|
+
## 2.1.0-beta.2
|
|
1063
|
+
|
|
1064
|
+
### Patch Changes
|
|
1065
|
+
|
|
1066
|
+
- 4920119: fix the "incomplete_details" key from nullable to nullish for openai compatibility
|
|
1067
|
+
- 0c4822d: feat: `EmbeddingModelV3`
|
|
1068
|
+
- 1cad0ab: feat: add provider version to user-agent header
|
|
1069
|
+
- Updated dependencies [0c4822d]
|
|
1070
|
+
- @ai-sdk/provider@2.1.0-beta.1
|
|
1071
|
+
- @ai-sdk/provider-utils@3.1.0-beta.2
|
|
1072
|
+
|
|
1073
|
+
## 2.1.0-beta.1
|
|
1074
|
+
|
|
1075
|
+
### Patch Changes
|
|
1076
|
+
|
|
1077
|
+
- Updated dependencies
|
|
1078
|
+
- @ai-sdk/test-server@1.0.0-beta.0
|
|
1079
|
+
- @ai-sdk/provider-utils@3.1.0-beta.1
|
|
1080
|
+
|
|
1081
|
+
## 2.1.0-beta.0
|
|
1082
|
+
|
|
1083
|
+
### Minor Changes
|
|
1084
|
+
|
|
1085
|
+
- 78928cb: release: start 5.1 beta
|
|
1086
|
+
|
|
1087
|
+
### Patch Changes
|
|
1088
|
+
|
|
1089
|
+
- Updated dependencies [78928cb]
|
|
1090
|
+
- @ai-sdk/provider@2.1.0-beta.0
|
|
1091
|
+
- @ai-sdk/provider-utils@3.1.0-beta.0
|
|
1092
|
+
|
|
1093
|
+
## 2.0.32
|
|
1094
|
+
|
|
1095
|
+
### Patch Changes
|
|
1096
|
+
|
|
1097
|
+
- 1cf857d: fix(provider/openai): remove provider-executed tools from chat completions model
|
|
1098
|
+
- 01de47f: feat(provider/openai): rework file search tool
|
|
1099
|
+
|
|
1100
|
+
## 2.0.31
|
|
1101
|
+
|
|
1102
|
+
### Patch Changes
|
|
1103
|
+
|
|
1104
|
+
- bb94467: feat(provider/openai): add maxToolCalls provider option
|
|
1105
|
+
- 4a2b70e: feat(provider/openai): send item references for provider-executed tool results
|
|
1106
|
+
- 643711d: feat (provider/openai): provider defined image generation tool support
|
|
1107
|
+
|
|
1108
|
+
## 2.0.30
|
|
1109
|
+
|
|
1110
|
+
### Patch Changes
|
|
1111
|
+
|
|
1112
|
+
- Updated dependencies [0294b58]
|
|
1113
|
+
- @ai-sdk/provider-utils@3.0.9
|
|
1114
|
+
|
|
1115
|
+
## 2.0.29
|
|
1116
|
+
|
|
1117
|
+
### Patch Changes
|
|
1118
|
+
|
|
1119
|
+
- 4235eb3: feat(provider/openai): code interpreter tool calls and results
|
|
1120
|
+
|
|
1121
|
+
## 2.0.28
|
|
1122
|
+
|
|
1123
|
+
### Patch Changes
|
|
1124
|
+
|
|
1125
|
+
- 4c2bb77: fix (provider/openai): send sources action as include
|
|
1126
|
+
- 561e8b0: fix (provider/openai): fix code interpreter tool in doGenerate
|
|
1127
|
+
|
|
1128
|
+
## 2.0.27
|
|
1129
|
+
|
|
1130
|
+
### Patch Changes
|
|
1131
|
+
|
|
1132
|
+
- 2338c79: feat (provider/openai): add jsdoc for openai tools
|
|
1133
|
+
|
|
1134
|
+
## 2.0.26
|
|
1135
|
+
|
|
1136
|
+
### Patch Changes
|
|
1137
|
+
|
|
1138
|
+
- 5819aec: fix (provider/openai): only send tool calls finish reason for tools that are not provider-executed
|
|
1139
|
+
- af8c6bb: feat (provider/openai): add web_search tool
|
|
1140
|
+
|
|
1141
|
+
## 2.0.25
|
|
1142
|
+
|
|
1143
|
+
### Patch Changes
|
|
1144
|
+
|
|
1145
|
+
- fb45ade: fix timestamp granularities support for openai transcription
|
|
1146
|
+
|
|
1147
|
+
## 2.0.24
|
|
1148
|
+
|
|
1149
|
+
### Patch Changes
|
|
1150
|
+
|
|
1151
|
+
- ad57512: fix(provider/openai): safe practice to include filename and fileExtension to avoid `experimental_transcribe` fails with valid Buffer
|
|
1152
|
+
- Updated dependencies [99964ed]
|
|
1153
|
+
- @ai-sdk/provider-utils@3.0.8
|
|
1154
|
+
|
|
1155
|
+
## 2.0.23
|
|
1156
|
+
|
|
1157
|
+
### Patch Changes
|
|
1158
|
+
|
|
1159
|
+
- a9a61b7: Add serviceTier to provider metadata for OpenAI responses
|
|
1160
|
+
|
|
1161
|
+
## 2.0.22
|
|
1162
|
+
|
|
1163
|
+
### Patch Changes
|
|
1164
|
+
|
|
1165
|
+
- 0e272ae: fix(provider/openai): make file_citation annotation fields optional for responses api compatibility
|
|
1166
|
+
- Updated dependencies [886e7cd]
|
|
1167
|
+
- @ai-sdk/provider-utils@3.0.7
|
|
1168
|
+
|
|
1169
|
+
## 2.0.21
|
|
1170
|
+
|
|
1171
|
+
### Patch Changes
|
|
1172
|
+
|
|
1173
|
+
- d18856a: fix(provider/openai): support websearch tool results without query property
|
|
1174
|
+
- 15271d6: fix(provider/openai): do not set `response_format` to `verbose_json` if model is `gpt-4o-transcribe` or `gpt-4o-mini-transcribe`
|
|
1175
|
+
|
|
1176
|
+
These two models do not support it:
|
|
1177
|
+
https://platform.openai.com/docs/api-reference/audio/createTranscription#audio_createtranscription-response_format
|
|
1178
|
+
|
|
1179
|
+
- Updated dependencies [1b5a3d3]
|
|
1180
|
+
- @ai-sdk/provider-utils@3.0.6
|
|
1181
|
+
|
|
1182
|
+
## 2.0.20
|
|
1183
|
+
|
|
1184
|
+
### Patch Changes
|
|
1185
|
+
|
|
1186
|
+
- 974de40: fix(provider/ai): do not set `.providerMetadata.openai.logprobs` to an array of empty arrays when using `streamText()`
|
|
1187
|
+
|
|
1188
|
+
## 2.0.19
|
|
1189
|
+
|
|
1190
|
+
### Patch Changes
|
|
1191
|
+
|
|
1192
|
+
- Updated dependencies [0857788]
|
|
1193
|
+
- @ai-sdk/provider-utils@3.0.5
|
|
1194
|
+
|
|
1195
|
+
## 2.0.18
|
|
1196
|
+
|
|
1197
|
+
### Patch Changes
|
|
1198
|
+
|
|
1199
|
+
- 5e47d00: Support Responses API input_file file_url passthrough for PDFs.
|
|
1200
|
+
|
|
1201
|
+
This adds:
|
|
1202
|
+
|
|
1203
|
+
- file_url variant to OpenAIResponses user content
|
|
1204
|
+
- PDF URL mapping to input_file with file_url in Responses converter
|
|
1205
|
+
- PDF URL support in supportedUrls to avoid auto-download
|
|
1206
|
+
|
|
1207
|
+
## 2.0.17
|
|
1208
|
+
|
|
1209
|
+
### Patch Changes
|
|
1210
|
+
|
|
1211
|
+
- 70bb696: fix(provider/openai): correct web search tool input
|
|
1212
|
+
|
|
1213
|
+
## 2.0.16
|
|
1214
|
+
|
|
1215
|
+
### Patch Changes
|
|
1216
|
+
|
|
1217
|
+
- Updated dependencies [68751f9]
|
|
1218
|
+
- @ai-sdk/provider-utils@3.0.4
|
|
1219
|
+
|
|
1220
|
+
## 2.0.15
|
|
1221
|
+
|
|
1222
|
+
### Patch Changes
|
|
1223
|
+
|
|
1224
|
+
- a4bef93: feat(provider/openai): expose web search queries in responses api
|
|
1225
|
+
- 6ed34cb: refactor(openai): consolidate model config into `getResponsesModelConfig()`
|
|
1226
|
+
|
|
1227
|
+
https://github.com/vercel/ai/pull/8038
|
|
1228
|
+
|
|
1229
|
+
## 2.0.14
|
|
1230
|
+
|
|
1231
|
+
### Patch Changes
|
|
1232
|
+
|
|
1233
|
+
- 7f47105: fix(provider/openai): support file_citation annotations in responses api
|
|
1234
|
+
|
|
1235
|
+
## 2.0.13
|
|
1236
|
+
|
|
1237
|
+
### Patch Changes
|
|
1238
|
+
|
|
1239
|
+
- ddc9d99: Implements `logprobs` for OpenAI `providerOptions` and `providerMetaData` in `OpenAIResponsesLanguageModel`
|
|
1240
|
+
|
|
1241
|
+
You can now set `providerOptions.openai.logprobs` when using `generateText()` and retrieve logprobs from the response via `result.providerMetadata?.openai`
|
|
1242
|
+
|
|
1243
|
+
## 2.0.12
|
|
1244
|
+
|
|
1245
|
+
### Patch Changes
|
|
1246
|
+
|
|
1247
|
+
- ec336a1: feat(provider/openai): add response_format to be supported by default
|
|
1248
|
+
- 2935ec7: fix(provider/openai): exclude gpt-5-chat from reasoning model
|
|
1249
|
+
- Updated dependencies
|
|
1250
|
+
- @ai-sdk/provider-utils@3.0.3
|
|
1251
|
+
|
|
1252
|
+
## 2.0.11
|
|
1253
|
+
|
|
1254
|
+
### Patch Changes
|
|
1255
|
+
|
|
1256
|
+
- 097b452: feat(openai, azure): add configurable file ID prefixes for Responses API
|
|
1257
|
+
|
|
1258
|
+
- Added `fileIdPrefixes` option to OpenAI Responses API configuration
|
|
1259
|
+
- Azure OpenAI now supports `assistant-` prefixed file IDs (replacing previous `file-` prefix support)
|
|
1260
|
+
- OpenAI maintains backward compatibility with default `file-` prefix
|
|
1261
|
+
- File ID detection is disabled when `fileIdPrefixes` is undefined, gracefully falling back to base64 processing
|
|
1262
|
+
|
|
1263
|
+
- 87cf954: feat(provider/openai): add support for prompt_cache_key
|
|
1264
|
+
- a3d98a9: feat(provider/openai): add support for safety_identifier
|
|
1265
|
+
- 110d167: fix(openai): add missing file_search_call handlers in responses streaming
|
|
1266
|
+
- 8d3c747: chore(openai): remove deprecated GPT-4.5-preview models and improve autocomplete control
|
|
1267
|
+
- Updated dependencies [38ac190]
|
|
1268
|
+
- @ai-sdk/provider-utils@3.0.2
|
|
1269
|
+
|
|
1270
|
+
## 2.0.10
|
|
1271
|
+
|
|
1272
|
+
### Patch Changes
|
|
1273
|
+
|
|
1274
|
+
- a274b01: refactor(provider/openai): restructure files
|
|
1275
|
+
- b48e0ff: feat(provider/openai): add code interpreter tool (responses api)
|
|
1276
|
+
|
|
1277
|
+
## 2.0.9
|
|
1278
|
+
|
|
1279
|
+
### Patch Changes
|
|
1280
|
+
|
|
1281
|
+
- 8f8a521: fix(providers): use convertToBase64 for Uint8Array image parts to produce valid data URLs; keep mediaType normalization and URL passthrough
|
|
1282
|
+
|
|
1283
|
+
## 2.0.8
|
|
1284
|
+
|
|
1285
|
+
### Patch Changes
|
|
1286
|
+
|
|
1287
|
+
- 57fb959: feat(openai): add verbosity parameter support for chat api
|
|
1288
|
+
- 2a3fbe6: allow `minimal` in `reasoningEffort` for openai chat
|
|
1289
|
+
|
|
1290
|
+
## 2.0.7
|
|
4
1291
|
|
|
5
1292
|
### Patch Changes
|
|
6
1293
|
|
|
@@ -167,108 +1454,7 @@
|
|
|
167
1454
|
- f10304b: feat(tool-calling): don't require the user to have to pass parameters
|
|
168
1455
|
- 4af5233: Fix PDF file parts when passed as a string url or Uint8Array
|
|
169
1456
|
- 7df7a25: feat (providers/openai): support gpt-image-1 image generation
|
|
170
|
-
- Updated dependencies
|
|
171
|
-
- Updated dependencies [742b7be]
|
|
172
|
-
- Updated dependencies [e7fcc86]
|
|
173
|
-
- Updated dependencies [7cddb72]
|
|
174
|
-
- Updated dependencies [ccce59b]
|
|
175
|
-
- Updated dependencies [e2b9e4b]
|
|
176
|
-
- Updated dependencies [95857aa]
|
|
177
|
-
- Updated dependencies [45c1ea2]
|
|
178
|
-
- Updated dependencies [6f6bb89]
|
|
179
|
-
- Updated dependencies [060370c]
|
|
180
|
-
- Updated dependencies [dc714f3]
|
|
181
|
-
- Updated dependencies [b5da06a]
|
|
182
|
-
- Updated dependencies [d1a1aa1]
|
|
183
|
-
- Updated dependencies [63f9e9b]
|
|
184
|
-
- Updated dependencies [5d142ab]
|
|
185
|
-
- Updated dependencies [d5f588f]
|
|
186
|
-
- Updated dependencies [e025824]
|
|
187
|
-
- Updated dependencies [0571b98]
|
|
188
|
-
- Updated dependencies [b6b43c7]
|
|
189
|
-
- Updated dependencies [4fef487]
|
|
190
|
-
- Updated dependencies [48d257a]
|
|
191
|
-
- Updated dependencies [0c0c0b3]
|
|
192
|
-
- Updated dependencies [0d2c085]
|
|
193
|
-
- Updated dependencies [40acf9b]
|
|
194
|
-
- Updated dependencies [9222aeb]
|
|
195
|
-
- Updated dependencies [e2aceaf]
|
|
196
|
-
- Updated dependencies [411e483]
|
|
197
|
-
- Updated dependencies [8ba77a7]
|
|
198
|
-
- Updated dependencies [7b3ae3f]
|
|
199
|
-
- Updated dependencies [a166433]
|
|
200
|
-
- Updated dependencies [26735b5]
|
|
201
|
-
- Updated dependencies [443d8ec]
|
|
202
|
-
- Updated dependencies [a8c8bd5]
|
|
203
|
-
- Updated dependencies [abf9a79]
|
|
204
|
-
- Updated dependencies [14c9410]
|
|
205
|
-
- Updated dependencies [e86be6f]
|
|
206
|
-
- Updated dependencies [9bf7291]
|
|
207
|
-
- Updated dependencies [2e13791]
|
|
208
|
-
- Updated dependencies [9f95b35]
|
|
209
|
-
- Updated dependencies [66962ed]
|
|
210
|
-
- Updated dependencies [0d06df6]
|
|
211
|
-
- Updated dependencies [472524a]
|
|
212
|
-
- Updated dependencies [dd3ff01]
|
|
213
|
-
- Updated dependencies [d9c98f4]
|
|
214
|
-
- Updated dependencies [05d2819]
|
|
215
|
-
- Updated dependencies [9301f86]
|
|
216
|
-
- Updated dependencies [0a87932]
|
|
217
|
-
- Updated dependencies [c4a2fec]
|
|
218
|
-
- Updated dependencies [957b739]
|
|
219
|
-
- Updated dependencies [79457bd]
|
|
220
|
-
- Updated dependencies [a3f768e]
|
|
221
|
-
- Updated dependencies [7435eb5]
|
|
222
|
-
- Updated dependencies [8aa9e20]
|
|
223
|
-
- Updated dependencies [4617fab]
|
|
224
|
-
- Updated dependencies [ac34802]
|
|
225
|
-
- Updated dependencies [0054544]
|
|
226
|
-
- Updated dependencies [cb68df0]
|
|
227
|
-
- Updated dependencies [ad80501]
|
|
228
|
-
- Updated dependencies [68ecf2f]
|
|
229
|
-
- Updated dependencies [9e9c809]
|
|
230
|
-
- Updated dependencies [32831c6]
|
|
231
|
-
- Updated dependencies [6dc848c]
|
|
232
|
-
- Updated dependencies [6b98118]
|
|
233
|
-
- Updated dependencies [d0f9495]
|
|
234
|
-
- Updated dependencies [63d791d]
|
|
235
|
-
- Updated dependencies [87b828f]
|
|
236
|
-
- Updated dependencies [3f2f00c]
|
|
237
|
-
- Updated dependencies [bfdca8d]
|
|
238
|
-
- Updated dependencies [0ff02bb]
|
|
239
|
-
- Updated dependencies [7979f7f]
|
|
240
|
-
- Updated dependencies [39a4fab]
|
|
241
|
-
- Updated dependencies [44f4aba]
|
|
242
|
-
- Updated dependencies [9bd5ab5]
|
|
243
|
-
- Updated dependencies [57edfcb]
|
|
244
|
-
- Updated dependencies [faf8446]
|
|
245
|
-
- Updated dependencies [7ea4132]
|
|
246
|
-
- Updated dependencies [d1a034f]
|
|
247
|
-
- Updated dependencies [5c56081]
|
|
248
|
-
- Updated dependencies [fd65bc6]
|
|
249
|
-
- Updated dependencies [023ba40]
|
|
250
|
-
- Updated dependencies [ea7a7c9]
|
|
251
|
-
- Updated dependencies [26535e0]
|
|
252
|
-
- Updated dependencies [e030615]
|
|
253
|
-
- Updated dependencies [5e57fae]
|
|
254
|
-
- Updated dependencies [393138b]
|
|
255
|
-
- Updated dependencies [c57e248]
|
|
256
|
-
- Updated dependencies [88a8ee5]
|
|
257
|
-
- Updated dependencies [41fa418]
|
|
258
|
-
- Updated dependencies [205077b]
|
|
259
|
-
- Updated dependencies [71f938d]
|
|
260
|
-
- Updated dependencies [3795467]
|
|
261
|
-
- Updated dependencies [28a5ed5]
|
|
262
|
-
- Updated dependencies [7182d14]
|
|
263
|
-
- Updated dependencies [c1e6647]
|
|
264
|
-
- Updated dependencies [1766ede]
|
|
265
|
-
- Updated dependencies [811dff3]
|
|
266
|
-
- Updated dependencies [f10304b]
|
|
267
|
-
- Updated dependencies [dd5fd43]
|
|
268
|
-
- Updated dependencies [33f4a6a]
|
|
269
|
-
- Updated dependencies [383cbfa]
|
|
270
|
-
- Updated dependencies [27deb4d]
|
|
271
|
-
- Updated dependencies [c4df419]
|
|
1457
|
+
- Updated dependencies
|
|
272
1458
|
- @ai-sdk/provider-utils@3.0.0
|
|
273
1459
|
- @ai-sdk/provider@2.0.0
|
|
274
1460
|
|
|
@@ -317,8 +1503,7 @@
|
|
|
317
1503
|
|
|
318
1504
|
### Patch Changes
|
|
319
1505
|
|
|
320
|
-
- Updated dependencies
|
|
321
|
-
- Updated dependencies [383cbfa]
|
|
1506
|
+
- Updated dependencies
|
|
322
1507
|
- @ai-sdk/provider-utils@3.0.0-beta.5
|
|
323
1508
|
|
|
324
1509
|
## 2.0.0-beta.10
|
|
@@ -383,9 +1568,7 @@
|
|
|
383
1568
|
### Patch Changes
|
|
384
1569
|
|
|
385
1570
|
- d1a034f: feature: using Zod 4 for internal stuff
|
|
386
|
-
- Updated dependencies
|
|
387
|
-
- Updated dependencies [39a4fab]
|
|
388
|
-
- Updated dependencies [d1a034f]
|
|
1571
|
+
- Updated dependencies
|
|
389
1572
|
- @ai-sdk/provider-utils@3.0.0-beta.2
|
|
390
1573
|
|
|
391
1574
|
## 2.0.0-beta.1
|
|
@@ -397,23 +1580,7 @@
|
|
|
397
1580
|
### Patch Changes
|
|
398
1581
|
|
|
399
1582
|
- 5d959e7: refactor: updated openai + anthropic tool use server side
|
|
400
|
-
- Updated dependencies
|
|
401
|
-
- Updated dependencies [7cddb72]
|
|
402
|
-
- Updated dependencies [ccce59b]
|
|
403
|
-
- Updated dependencies [e2b9e4b]
|
|
404
|
-
- Updated dependencies [45c1ea2]
|
|
405
|
-
- Updated dependencies [e025824]
|
|
406
|
-
- Updated dependencies [0d06df6]
|
|
407
|
-
- Updated dependencies [472524a]
|
|
408
|
-
- Updated dependencies [dd3ff01]
|
|
409
|
-
- Updated dependencies [7435eb5]
|
|
410
|
-
- Updated dependencies [cb68df0]
|
|
411
|
-
- Updated dependencies [bfdca8d]
|
|
412
|
-
- Updated dependencies [44f4aba]
|
|
413
|
-
- Updated dependencies [023ba40]
|
|
414
|
-
- Updated dependencies [5e57fae]
|
|
415
|
-
- Updated dependencies [71f938d]
|
|
416
|
-
- Updated dependencies [28a5ed5]
|
|
1583
|
+
- Updated dependencies
|
|
417
1584
|
- @ai-sdk/provider@2.0.0-beta.1
|
|
418
1585
|
- @ai-sdk/provider-utils@3.0.0-beta.1
|
|
419
1586
|
|
|
@@ -421,8 +1588,7 @@
|
|
|
421
1588
|
|
|
422
1589
|
### Patch Changes
|
|
423
1590
|
|
|
424
|
-
- Updated dependencies
|
|
425
|
-
- Updated dependencies [8ba77a7]
|
|
1591
|
+
- Updated dependencies
|
|
426
1592
|
- @ai-sdk/provider@2.0.0-alpha.15
|
|
427
1593
|
- @ai-sdk/provider-utils@3.0.0-alpha.15
|
|
428
1594
|
|
|
@@ -430,9 +1596,7 @@
|
|
|
430
1596
|
|
|
431
1597
|
### Patch Changes
|
|
432
1598
|
|
|
433
|
-
- Updated dependencies
|
|
434
|
-
- Updated dependencies [63f9e9b]
|
|
435
|
-
- Updated dependencies [2e13791]
|
|
1599
|
+
- Updated dependencies
|
|
436
1600
|
- @ai-sdk/provider@2.0.0-alpha.14
|
|
437
1601
|
- @ai-sdk/provider-utils@3.0.0-alpha.14
|
|
438
1602
|
|
|
@@ -484,8 +1648,7 @@
|
|
|
484
1648
|
### Patch Changes
|
|
485
1649
|
|
|
486
1650
|
- 4af5233: Fix PDF file parts when passed as a string url or Uint8Array
|
|
487
|
-
- Updated dependencies
|
|
488
|
-
- Updated dependencies [9222aeb]
|
|
1651
|
+
- Updated dependencies
|
|
489
1652
|
- @ai-sdk/provider-utils@3.0.0-alpha.8
|
|
490
1653
|
- @ai-sdk/provider@2.0.0-alpha.8
|
|
491
1654
|
|
|
@@ -607,10 +1770,7 @@
|
|
|
607
1770
|
|
|
608
1771
|
- 928fadf: fix(providers/openai): logprobs for stream alongside completion model
|
|
609
1772
|
- 6f231db: fix(providers): always use optional instead of mix of nullish for providerOptions
|
|
610
|
-
- Updated dependencies
|
|
611
|
-
- Updated dependencies [a8c8bd5]
|
|
612
|
-
- Updated dependencies [7979f7f]
|
|
613
|
-
- Updated dependencies [41fa418]
|
|
1773
|
+
- Updated dependencies
|
|
614
1774
|
- @ai-sdk/provider-utils@3.0.0-canary.15
|
|
615
1775
|
- @ai-sdk/provider@2.0.0-canary.14
|
|
616
1776
|
|
|
@@ -640,8 +1800,7 @@
|
|
|
640
1800
|
```
|
|
641
1801
|
|
|
642
1802
|
- 284353f: fix(providers/openai): zod parse error with function
|
|
643
|
-
- Updated dependencies
|
|
644
|
-
- Updated dependencies [9bd5ab5]
|
|
1803
|
+
- Updated dependencies
|
|
645
1804
|
- @ai-sdk/provider-utils@3.0.0-canary.14
|
|
646
1805
|
- @ai-sdk/provider@2.0.0-canary.13
|
|
647
1806
|
|
|
@@ -650,8 +1809,7 @@
|
|
|
650
1809
|
### Patch Changes
|
|
651
1810
|
|
|
652
1811
|
- fa758ea: feat(provider/openai): add o3 & o4-mini with developer systemMessageMode
|
|
653
|
-
- Updated dependencies
|
|
654
|
-
- Updated dependencies [0ff02bb]
|
|
1812
|
+
- Updated dependencies
|
|
655
1813
|
- @ai-sdk/provider@2.0.0-canary.12
|
|
656
1814
|
- @ai-sdk/provider-utils@3.0.0-canary.13
|
|
657
1815
|
|
|
@@ -663,9 +1821,7 @@
|
|
|
663
1821
|
- c15dfbf: feat (providers/openai): add gpt-image-1 model id to image settings
|
|
664
1822
|
- 9bf7291: chore(providers/openai): enable structuredOutputs by default & switch to provider option
|
|
665
1823
|
- 4617fab: chore(embedding-models): remove remaining settings
|
|
666
|
-
- Updated dependencies
|
|
667
|
-
- Updated dependencies [4617fab]
|
|
668
|
-
- Updated dependencies [e030615]
|
|
1824
|
+
- Updated dependencies
|
|
669
1825
|
- @ai-sdk/provider@2.0.0-canary.11
|
|
670
1826
|
- @ai-sdk/provider-utils@3.0.0-canary.12
|
|
671
1827
|
|
|
@@ -677,9 +1833,7 @@
|
|
|
677
1833
|
- 66962ed: fix(packages): export node10 compatible types
|
|
678
1834
|
- 9301f86: refactor (image-model): rename `ImageModelV1` to `ImageModelV2`
|
|
679
1835
|
- 7df7a25: feat (providers/openai): support gpt-image-1 image generation
|
|
680
|
-
- Updated dependencies
|
|
681
|
-
- Updated dependencies [9301f86]
|
|
682
|
-
- Updated dependencies [a3f768e]
|
|
1836
|
+
- Updated dependencies
|
|
683
1837
|
- @ai-sdk/provider-utils@3.0.0-canary.11
|
|
684
1838
|
- @ai-sdk/provider@2.0.0-canary.10
|
|
685
1839
|
|
|
@@ -697,8 +1851,7 @@
|
|
|
697
1851
|
### Patch Changes
|
|
698
1852
|
|
|
699
1853
|
- 3bd3c0b: chore(providers/openai): update embedding model to use providerOptions
|
|
700
|
-
- Updated dependencies
|
|
701
|
-
- Updated dependencies [7ea4132]
|
|
1854
|
+
- Updated dependencies
|
|
702
1855
|
- @ai-sdk/provider@2.0.0-canary.8
|
|
703
1856
|
- @ai-sdk/provider-utils@3.0.0-canary.9
|
|
704
1857
|
|
|
@@ -716,10 +1869,7 @@
|
|
|
716
1869
|
### Patch Changes
|
|
717
1870
|
|
|
718
1871
|
- 8aa9e20: feat: add speech with experimental_generateSpeech
|
|
719
|
-
- Updated dependencies
|
|
720
|
-
- Updated dependencies [b6b43c7]
|
|
721
|
-
- Updated dependencies [8aa9e20]
|
|
722
|
-
- Updated dependencies [3795467]
|
|
1872
|
+
- Updated dependencies
|
|
723
1873
|
- @ai-sdk/provider-utils@3.0.0-canary.8
|
|
724
1874
|
- @ai-sdk/provider@2.0.0-canary.7
|
|
725
1875
|
|
|
@@ -730,18 +1880,7 @@
|
|
|
730
1880
|
- 26735b5: chore(embedding-model): add v2 interface
|
|
731
1881
|
- 443d8ec: feat(embedding-model-v2): add response body field
|
|
732
1882
|
- fd65bc6: chore(embedding-model-v2): rename rawResponse to response
|
|
733
|
-
- Updated dependencies
|
|
734
|
-
- Updated dependencies [443d8ec]
|
|
735
|
-
- Updated dependencies [14c9410]
|
|
736
|
-
- Updated dependencies [d9c98f4]
|
|
737
|
-
- Updated dependencies [c4a2fec]
|
|
738
|
-
- Updated dependencies [0054544]
|
|
739
|
-
- Updated dependencies [9e9c809]
|
|
740
|
-
- Updated dependencies [32831c6]
|
|
741
|
-
- Updated dependencies [d0f9495]
|
|
742
|
-
- Updated dependencies [fd65bc6]
|
|
743
|
-
- Updated dependencies [393138b]
|
|
744
|
-
- Updated dependencies [7182d14]
|
|
1883
|
+
- Updated dependencies
|
|
745
1884
|
- @ai-sdk/provider@2.0.0-canary.6
|
|
746
1885
|
- @ai-sdk/provider-utils@3.0.0-canary.7
|
|
747
1886
|
|
|
@@ -755,11 +1894,7 @@
|
|
|
755
1894
|
- 5147e6e: chore(openai): remove simulateStreaming
|
|
756
1895
|
- c2b92cc: chore(openai): remove legacy function calling
|
|
757
1896
|
- f10304b: feat(tool-calling): don't require the user to have to pass parameters
|
|
758
|
-
- Updated dependencies
|
|
759
|
-
- Updated dependencies [79457bd]
|
|
760
|
-
- Updated dependencies [ad80501]
|
|
761
|
-
- Updated dependencies [1766ede]
|
|
762
|
-
- Updated dependencies [f10304b]
|
|
1897
|
+
- Updated dependencies
|
|
763
1898
|
- @ai-sdk/provider@2.0.0-canary.5
|
|
764
1899
|
- @ai-sdk/provider-utils@3.0.0-canary.6
|
|
765
1900
|
|
|
@@ -786,11 +1921,7 @@
|
|
|
786
1921
|
- a166433: feat: add transcription with experimental_transcribe
|
|
787
1922
|
- 0a87932: core (ai): change transcription model mimeType to mediaType
|
|
788
1923
|
- 0a87932: fix (provider/openai): increase transcription model resilience
|
|
789
|
-
- Updated dependencies
|
|
790
|
-
- Updated dependencies [abf9a79]
|
|
791
|
-
- Updated dependencies [9f95b35]
|
|
792
|
-
- Updated dependencies [0a87932]
|
|
793
|
-
- Updated dependencies [6dc848c]
|
|
1924
|
+
- Updated dependencies
|
|
794
1925
|
- @ai-sdk/provider-utils@3.0.0-canary.3
|
|
795
1926
|
- @ai-sdk/provider@2.0.0-canary.2
|
|
796
1927
|
|
|
@@ -798,8 +1929,7 @@
|
|
|
798
1929
|
|
|
799
1930
|
### Patch Changes
|
|
800
1931
|
|
|
801
|
-
- Updated dependencies
|
|
802
|
-
- Updated dependencies [33f4a6a]
|
|
1932
|
+
- Updated dependencies
|
|
803
1933
|
- @ai-sdk/provider@2.0.0-canary.1
|
|
804
1934
|
- @ai-sdk/provider-utils@3.0.0-canary.2
|
|
805
1935
|
|
|
@@ -807,9 +1937,7 @@
|
|
|
807
1937
|
|
|
808
1938
|
### Patch Changes
|
|
809
1939
|
|
|
810
|
-
- Updated dependencies
|
|
811
|
-
- Updated dependencies [0c0c0b3]
|
|
812
|
-
- Updated dependencies [63d791d]
|
|
1940
|
+
- Updated dependencies
|
|
813
1941
|
- @ai-sdk/provider-utils@3.0.0-canary.1
|
|
814
1942
|
|
|
815
1943
|
## 2.0.0-canary.0
|
|
@@ -1035,8 +2163,7 @@
|
|
|
1035
2163
|
### Patch Changes
|
|
1036
2164
|
|
|
1037
2165
|
- 3a58a2e: feat (ai/core): throw NoImageGeneratedError from generateImage when no predictions are returned.
|
|
1038
|
-
- Updated dependencies
|
|
1039
|
-
- Updated dependencies [3a58a2e]
|
|
2166
|
+
- Updated dependencies
|
|
1040
2167
|
- @ai-sdk/provider-utils@2.1.2
|
|
1041
2168
|
- @ai-sdk/provider@1.0.6
|
|
1042
2169
|
|
|
@@ -1045,8 +2172,7 @@
|
|
|
1045
2172
|
### Patch Changes
|
|
1046
2173
|
|
|
1047
2174
|
- e7a9ec9: feat (provider-utils): include raw value in json parse results
|
|
1048
|
-
- Updated dependencies
|
|
1049
|
-
- Updated dependencies [0a699f1]
|
|
2175
|
+
- Updated dependencies
|
|
1050
2176
|
- @ai-sdk/provider-utils@2.1.1
|
|
1051
2177
|
- @ai-sdk/provider@1.0.5
|
|
1052
2178
|
|
|
@@ -1091,9 +2217,7 @@
|
|
|
1091
2217
|
|
|
1092
2218
|
### Patch Changes
|
|
1093
2219
|
|
|
1094
|
-
- Updated dependencies
|
|
1095
|
-
- Updated dependencies [e6dfef4]
|
|
1096
|
-
- Updated dependencies [6636db6]
|
|
2220
|
+
- Updated dependencies
|
|
1097
2221
|
- @ai-sdk/provider-utils@2.0.7
|
|
1098
2222
|
|
|
1099
2223
|
## 1.0.15
|
|
@@ -1110,9 +2234,7 @@
|
|
|
1110
2234
|
|
|
1111
2235
|
- 19a2ce7: feat (ai/core): add aspectRatio and seed options to generateImage
|
|
1112
2236
|
- 6337688: feat: change image generation errors to warnings
|
|
1113
|
-
- Updated dependencies
|
|
1114
|
-
- Updated dependencies [19a2ce7]
|
|
1115
|
-
- Updated dependencies [6337688]
|
|
2237
|
+
- Updated dependencies
|
|
1116
2238
|
- @ai-sdk/provider@1.0.4
|
|
1117
2239
|
- @ai-sdk/provider-utils@2.0.6
|
|
1118
2240
|
|
|
@@ -1216,13 +2338,7 @@
|
|
|
1216
2338
|
|
|
1217
2339
|
### Patch Changes
|
|
1218
2340
|
|
|
1219
|
-
- Updated dependencies
|
|
1220
|
-
- Updated dependencies [dce4158]
|
|
1221
|
-
- Updated dependencies [c0ddc24]
|
|
1222
|
-
- Updated dependencies [b1da952]
|
|
1223
|
-
- Updated dependencies [dce4158]
|
|
1224
|
-
- Updated dependencies [8426f55]
|
|
1225
|
-
- Updated dependencies [db46ce5]
|
|
2341
|
+
- Updated dependencies
|
|
1226
2342
|
- @ai-sdk/provider-utils@2.0.0
|
|
1227
2343
|
- @ai-sdk/provider@1.0.0
|
|
1228
2344
|
|
|
@@ -1237,8 +2353,7 @@
|
|
|
1237
2353
|
|
|
1238
2354
|
### Patch Changes
|
|
1239
2355
|
|
|
1240
|
-
- Updated dependencies
|
|
1241
|
-
- Updated dependencies [dce4158]
|
|
2356
|
+
- Updated dependencies
|
|
1242
2357
|
- @ai-sdk/provider-utils@2.0.0-canary.2
|
|
1243
2358
|
|
|
1244
2359
|
## 1.0.0-canary.1
|
|
@@ -1261,9 +2376,7 @@
|
|
|
1261
2376
|
|
|
1262
2377
|
### Patch Changes
|
|
1263
2378
|
|
|
1264
|
-
- Updated dependencies
|
|
1265
|
-
- Updated dependencies [c0ddc24]
|
|
1266
|
-
- Updated dependencies [db46ce5]
|
|
2379
|
+
- Updated dependencies
|
|
1267
2380
|
- @ai-sdk/provider-utils@2.0.0-canary.0
|
|
1268
2381
|
- @ai-sdk/provider@1.0.0-canary.0
|
|
1269
2382
|
|
|
@@ -1284,11 +2397,7 @@
|
|
|
1284
2397
|
### Patch Changes
|
|
1285
2398
|
|
|
1286
2399
|
- 3b1b69a: feat: provider-defined tools
|
|
1287
|
-
- Updated dependencies
|
|
1288
|
-
- Updated dependencies [1486128]
|
|
1289
|
-
- Updated dependencies [7b937c5]
|
|
1290
|
-
- Updated dependencies [3b1b69a]
|
|
1291
|
-
- Updated dependencies [811a317]
|
|
2400
|
+
- Updated dependencies
|
|
1292
2401
|
- @ai-sdk/provider-utils@1.0.22
|
|
1293
2402
|
- @ai-sdk/provider@0.0.26
|
|
1294
2403
|
|
|
@@ -1381,8 +2490,7 @@
|
|
|
1381
2490
|
### Patch Changes
|
|
1382
2491
|
|
|
1383
2492
|
- 03313cd: feat (ai): expose response id, response model, response timestamp in telemetry and api
|
|
1384
|
-
- Updated dependencies
|
|
1385
|
-
- Updated dependencies [3be7c1c]
|
|
2493
|
+
- Updated dependencies
|
|
1386
2494
|
- @ai-sdk/provider-utils@1.0.18
|
|
1387
2495
|
- @ai-sdk/provider@0.0.23
|
|
1388
2496
|
|
|
@@ -1465,8 +2573,7 @@
|
|
|
1465
2573
|
|
|
1466
2574
|
### Patch Changes
|
|
1467
2575
|
|
|
1468
|
-
- Updated dependencies
|
|
1469
|
-
- Updated dependencies [845754b]
|
|
2576
|
+
- Updated dependencies
|
|
1470
2577
|
- @ai-sdk/provider-utils@1.0.10
|
|
1471
2578
|
- @ai-sdk/provider@0.0.18
|
|
1472
2579
|
|
|
@@ -1502,8 +2609,7 @@
|
|
|
1502
2609
|
### Patch Changes
|
|
1503
2610
|
|
|
1504
2611
|
- 7a2eb27: feat (provider/openai): make role nullish to enhance provider support
|
|
1505
|
-
- Updated dependencies
|
|
1506
|
-
- Updated dependencies [0762a22]
|
|
2612
|
+
- Updated dependencies
|
|
1507
2613
|
- @ai-sdk/provider-utils@1.0.6
|
|
1508
2614
|
|
|
1509
2615
|
## 0.0.40
|
|
@@ -1530,10 +2636,7 @@
|
|
|
1530
2636
|
- a5b58845: feat (core): support topK setting
|
|
1531
2637
|
- 4aa8deb3: feat (provider): support responseFormat setting in provider api
|
|
1532
2638
|
- 13b27ec6: chore (ai/core): remove grammar mode
|
|
1533
|
-
- Updated dependencies
|
|
1534
|
-
- Updated dependencies [a5b58845]
|
|
1535
|
-
- Updated dependencies [4aa8deb3]
|
|
1536
|
-
- Updated dependencies [13b27ec6]
|
|
2639
|
+
- Updated dependencies
|
|
1537
2640
|
- @ai-sdk/provider@0.0.13
|
|
1538
2641
|
- @ai-sdk/provider-utils@1.0.3
|
|
1539
2642
|
|
|
@@ -1564,9 +2667,7 @@
|
|
|
1564
2667
|
### Patch Changes
|
|
1565
2668
|
|
|
1566
2669
|
- 5edc6110: feat (ai/core): add custom request header support
|
|
1567
|
-
- Updated dependencies
|
|
1568
|
-
- Updated dependencies [5edc6110]
|
|
1569
|
-
- Updated dependencies [5edc6110]
|
|
2670
|
+
- Updated dependencies
|
|
1570
2671
|
- @ai-sdk/provider@0.0.11
|
|
1571
2672
|
- @ai-sdk/provider-utils@1.0.0
|
|
1572
2673
|
|
|
@@ -1594,8 +2695,7 @@
|
|
|
1594
2695
|
|
|
1595
2696
|
### Patch Changes
|
|
1596
2697
|
|
|
1597
|
-
- Updated dependencies
|
|
1598
|
-
- Updated dependencies [85712895]
|
|
2698
|
+
- Updated dependencies
|
|
1599
2699
|
- @ai-sdk/provider-utils@0.0.15
|
|
1600
2700
|
|
|
1601
2701
|
## 0.0.29
|
|
@@ -1656,9 +2756,7 @@
|
|
|
1656
2756
|
### Patch Changes
|
|
1657
2757
|
|
|
1658
2758
|
- fca7d026: feat (provider/openai): support streaming tool calls that are sent in one chunk
|
|
1659
|
-
- Updated dependencies
|
|
1660
|
-
- Updated dependencies [09295e2e]
|
|
1661
|
-
- Updated dependencies [043a5de2]
|
|
2759
|
+
- Updated dependencies
|
|
1662
2760
|
- @ai-sdk/provider@0.0.9
|
|
1663
2761
|
- @ai-sdk/provider-utils@0.0.12
|
|
1664
2762
|
|
|
@@ -1708,8 +2806,7 @@
|
|
|
1708
2806
|
|
|
1709
2807
|
### Patch Changes
|
|
1710
2808
|
|
|
1711
|
-
- Updated dependencies
|
|
1712
|
-
- Updated dependencies [6a50ac4]
|
|
2809
|
+
- Updated dependencies
|
|
1713
2810
|
- @ai-sdk/provider@0.0.6
|
|
1714
2811
|
- @ai-sdk/provider-utils@0.0.9
|
|
1715
2812
|
|
|
@@ -1772,8 +2869,7 @@
|
|
|
1772
2869
|
|
|
1773
2870
|
- d6431ae: ai/core: add logprobs support (thanks @SamStenner for the contribution)
|
|
1774
2871
|
- 25f3350: ai/core: add support for getting raw response headers.
|
|
1775
|
-
- Updated dependencies
|
|
1776
|
-
- Updated dependencies [25f3350]
|
|
2872
|
+
- Updated dependencies
|
|
1777
2873
|
- @ai-sdk/provider@0.0.2
|
|
1778
2874
|
- @ai-sdk/provider-utils@0.0.3
|
|
1779
2875
|
|