@ai-sdk/gladia 3.0.0-canary.36 → 3.0.0-canary.38
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 +14 -0
- package/dist/index.js +1 -1
- package/docs/120-gladia.mdx +0 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @ai-sdk/gladia
|
|
2
2
|
|
|
3
|
+
## 3.0.0-canary.38
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [d848405]
|
|
8
|
+
- @ai-sdk/provider-utils@5.0.0-canary.37
|
|
9
|
+
|
|
10
|
+
## 3.0.0-canary.37
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [ca39020]
|
|
15
|
+
- @ai-sdk/provider-utils@5.0.0-canary.36
|
|
16
|
+
|
|
3
17
|
## 3.0.0-canary.36
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -557,7 +557,7 @@ var gladiaTranscriptionResultResponseSchema = z3.object({
|
|
|
557
557
|
});
|
|
558
558
|
|
|
559
559
|
// src/version.ts
|
|
560
|
-
var VERSION = true ? "3.0.0-canary.
|
|
560
|
+
var VERSION = true ? "3.0.0-canary.38" : "0.0.0-test";
|
|
561
561
|
|
|
562
562
|
// src/gladia-provider.ts
|
|
563
563
|
function createGladia(options = {}) {
|
package/docs/120-gladia.mdx
CHANGED
|
@@ -113,7 +113,6 @@ The following provider options are available:
|
|
|
113
113
|
|
|
114
114
|
Configuration for custom vocabulary.
|
|
115
115
|
Optional.
|
|
116
|
-
|
|
117
116
|
- **vocabulary** _Array<string | \{ value: string, intensity?: number, pronunciations?: string[], language?: string \}>_
|
|
118
117
|
- **defaultIntensity** _number_
|
|
119
118
|
|
|
@@ -131,7 +130,6 @@ The following provider options are available:
|
|
|
131
130
|
|
|
132
131
|
Configuration for code switching.
|
|
133
132
|
Optional.
|
|
134
|
-
|
|
135
133
|
- **languages** _string[]_
|
|
136
134
|
|
|
137
135
|
- **language** _string_
|
|
@@ -148,7 +146,6 @@ The following provider options are available:
|
|
|
148
146
|
|
|
149
147
|
Configuration for callback.
|
|
150
148
|
Optional.
|
|
151
|
-
|
|
152
149
|
- **url** _string_
|
|
153
150
|
- **method** _'POST' | 'PUT'_
|
|
154
151
|
|
|
@@ -161,7 +158,6 @@ The following provider options are available:
|
|
|
161
158
|
|
|
162
159
|
Configuration for subtitles.
|
|
163
160
|
Optional.
|
|
164
|
-
|
|
165
161
|
- **formats** _Array<'srt' | 'vtt'>_
|
|
166
162
|
- **minimumDuration** _number_
|
|
167
163
|
- **maximumDuration** _number_
|
|
@@ -178,7 +174,6 @@ The following provider options are available:
|
|
|
178
174
|
|
|
179
175
|
Configuration for diarization.
|
|
180
176
|
Optional.
|
|
181
|
-
|
|
182
177
|
- **numberOfSpeakers** _number_
|
|
183
178
|
- **minSpeakers** _number_
|
|
184
179
|
- **maxSpeakers** _number_
|
|
@@ -193,7 +188,6 @@ The following provider options are available:
|
|
|
193
188
|
|
|
194
189
|
Configuration for translation.
|
|
195
190
|
Optional.
|
|
196
|
-
|
|
197
191
|
- **targetLanguages** _string[]_
|
|
198
192
|
- **model** _'base' | 'enhanced'_
|
|
199
193
|
- **matchOriginalUtterances** _boolean_
|
|
@@ -207,7 +201,6 @@ The following provider options are available:
|
|
|
207
201
|
|
|
208
202
|
Configuration for summarization.
|
|
209
203
|
Optional.
|
|
210
|
-
|
|
211
204
|
- **type** _'general' | 'bullet_points' | 'concise'_
|
|
212
205
|
|
|
213
206
|
- **moderation** _boolean_
|
|
@@ -239,7 +232,6 @@ The following provider options are available:
|
|
|
239
232
|
|
|
240
233
|
Configuration for custom spelling.
|
|
241
234
|
Optional.
|
|
242
|
-
|
|
243
235
|
- **spellingDictionary** _Record<string, string[]>_
|
|
244
236
|
|
|
245
237
|
- **structuredDataExtraction** _boolean_
|
|
@@ -251,7 +243,6 @@ The following provider options are available:
|
|
|
251
243
|
|
|
252
244
|
Configuration for structured data extraction.
|
|
253
245
|
Optional.
|
|
254
|
-
|
|
255
246
|
- **classes** _string[]_
|
|
256
247
|
|
|
257
248
|
- **sentimentAnalysis** _boolean_
|
|
@@ -268,7 +259,6 @@ The following provider options are available:
|
|
|
268
259
|
|
|
269
260
|
Configuration for audio to LLM.
|
|
270
261
|
Optional.
|
|
271
|
-
|
|
272
262
|
- **prompts** _string[]_
|
|
273
263
|
|
|
274
264
|
- **customMetadata** _Record<string, any>_
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/gladia",
|
|
3
|
-
"version": "3.0.0-canary.
|
|
3
|
+
"version": "3.0.0-canary.38",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@ai-sdk/provider": "4.0.0-canary.16",
|
|
33
|
-
"@ai-sdk/provider-utils": "5.0.0-canary.
|
|
33
|
+
"@ai-sdk/provider-utils": "5.0.0-canary.37"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "20.17.24",
|