@ai-sdk/provider 2.0.0-canary.1 → 2.0.0-canary.11
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 +102 -0
- package/dist/index.d.mts +984 -791
- package/dist/index.d.ts +984 -791
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,107 @@
|
|
1
1
|
# @ai-sdk/provider
|
2
2
|
|
3
|
+
## 2.0.0-canary.11
|
4
|
+
|
5
|
+
### Major Changes
|
6
|
+
|
7
|
+
- e030615: chore (provider): remove prompt type from language model v2 spec
|
8
|
+
|
9
|
+
### Patch Changes
|
10
|
+
|
11
|
+
- 9bf7291: chore(providers/openai): enable structuredOutputs by default & switch to provider option
|
12
|
+
- 4617fab: chore(embedding-models): remove remaining settings
|
13
|
+
|
14
|
+
## 2.0.0-canary.10
|
15
|
+
|
16
|
+
### Major Changes
|
17
|
+
|
18
|
+
- a3f768e: chore: restructure reasoning support
|
19
|
+
|
20
|
+
### Patch Changes
|
21
|
+
|
22
|
+
- 9301f86: refactor (image-model): rename `ImageModelV1` to `ImageModelV2`
|
23
|
+
|
24
|
+
## 2.0.0-canary.9
|
25
|
+
|
26
|
+
### Major Changes
|
27
|
+
|
28
|
+
- e86be6f: chore: remove logprobs
|
29
|
+
|
30
|
+
## 2.0.0-canary.8
|
31
|
+
|
32
|
+
### Major Changes
|
33
|
+
|
34
|
+
- 95857aa: chore: restructure language model supported urls
|
35
|
+
- 7ea4132: chore: remove object generation mode
|
36
|
+
|
37
|
+
## 2.0.0-canary.7
|
38
|
+
|
39
|
+
### Major Changes
|
40
|
+
|
41
|
+
- b6b43c7: chore: move warnings into stream-start part (spec)
|
42
|
+
- 3795467: chore: return content array from doGenerate (spec)
|
43
|
+
|
44
|
+
### Patch Changes
|
45
|
+
|
46
|
+
- 8aa9e20: feat: add speech with experimental_generateSpeech
|
47
|
+
|
48
|
+
## 2.0.0-canary.6
|
49
|
+
|
50
|
+
### Major Changes
|
51
|
+
|
52
|
+
- 14c9410: chore: refactor file towards source pattern (spec)
|
53
|
+
- d9c98f4: chore: refactor reasoning parts (spec)
|
54
|
+
- 0054544: chore: refactor source parts (spec)
|
55
|
+
- 9e9c809: chore: refactor tool call and tool call delta parts (spec)
|
56
|
+
- 32831c6: chore: refactor text parts (spec)
|
57
|
+
- d0f9495: chore: refactor file parts (spec)
|
58
|
+
|
59
|
+
### Patch Changes
|
60
|
+
|
61
|
+
- 26735b5: chore(embedding-model): add v2 interface
|
62
|
+
- 443d8ec: feat(embedding-model-v2): add response body field
|
63
|
+
- c4a2fec: chore (provider): extract shared provider options and metadata (spec)
|
64
|
+
- fd65bc6: chore(embedding-model-v2): rename rawResponse to response
|
65
|
+
- 393138b: feat(embedding-model-v2): add providerOptions
|
66
|
+
- 7182d14: Remove `Experimental_LanguageModelV2Middleware` type
|
67
|
+
|
68
|
+
## 2.0.0-canary.5
|
69
|
+
|
70
|
+
### Major Changes
|
71
|
+
|
72
|
+
- 411e483: chore (provider): refactor usage (language model v2)
|
73
|
+
- ad80501: chore (provider): allow both binary and base64 file content (spec)
|
74
|
+
- 1766ede: chore: rename maxTokens to maxOutputTokens
|
75
|
+
|
76
|
+
### Patch Changes
|
77
|
+
|
78
|
+
- 79457bd: chore (provider): extract LanguageModelV2File
|
79
|
+
- f10304b: feat(tool-calling): don't require the user to have to pass parameters
|
80
|
+
|
81
|
+
## 2.0.0-canary.4
|
82
|
+
|
83
|
+
### Major Changes
|
84
|
+
|
85
|
+
- 6f6bb89: chore (provider): cleanup request and rawRequest (language model v2)
|
86
|
+
|
87
|
+
## 2.0.0-canary.3
|
88
|
+
|
89
|
+
### Major Changes
|
90
|
+
|
91
|
+
- d1a1aa1: chore (provider): merge rawRequest into request (language model v2)
|
92
|
+
|
93
|
+
## 2.0.0-canary.2
|
94
|
+
|
95
|
+
### Major Changes
|
96
|
+
|
97
|
+
- abf9a79: chore: rename mimeType to mediaType
|
98
|
+
- 6dc848c: chore (provider): remove image parts
|
99
|
+
|
100
|
+
### Patch Changes
|
101
|
+
|
102
|
+
- a166433: feat: add transcription with experimental_transcribe
|
103
|
+
- 0a87932: core (ai): change transcription model mimeType to mediaType
|
104
|
+
|
3
105
|
## 2.0.0-canary.1
|
4
106
|
|
5
107
|
### Major Changes
|