@ai-sdk/assemblyai 3.0.0-canary.49 → 3.0.0-canary.50
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 +9 -0
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/docs/100-assemblyai.mdx +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @ai-sdk/assemblyai
|
|
2
2
|
|
|
3
|
+
## 3.0.0-canary.50
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [aeda373]
|
|
8
|
+
- Updated dependencies [375fdd7]
|
|
9
|
+
- Updated dependencies [b4507d5]
|
|
10
|
+
- @ai-sdk/provider-utils@5.0.0-canary.48
|
|
11
|
+
|
|
3
12
|
## 3.0.0-canary.49
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -33,7 +33,7 @@ import { assemblyai } from '@ai-sdk/assemblyai';
|
|
|
33
33
|
|
|
34
34
|
```ts
|
|
35
35
|
import { assemblyai } from '@ai-sdk/assemblyai';
|
|
36
|
-
import {
|
|
36
|
+
import { transcribe } from 'ai';
|
|
37
37
|
|
|
38
38
|
const { text } = await transcribe({
|
|
39
39
|
model: assemblyai.transcription('best'),
|
package/dist/index.js
CHANGED
|
@@ -400,7 +400,7 @@ var assemblyaiTranscriptionResponseSchema = z3.object({
|
|
|
400
400
|
});
|
|
401
401
|
|
|
402
402
|
// src/version.ts
|
|
403
|
-
var VERSION = true ? "3.0.0-canary.
|
|
403
|
+
var VERSION = true ? "3.0.0-canary.50" : "0.0.0-test";
|
|
404
404
|
|
|
405
405
|
// src/assemblyai-provider.ts
|
|
406
406
|
function createAssemblyAI(options = {}) {
|
package/docs/100-assemblyai.mdx
CHANGED
|
@@ -78,7 +78,7 @@ const model = assemblyai.transcription('best');
|
|
|
78
78
|
You can also pass additional provider-specific options using the `providerOptions` argument. For example, supplying the `contentSafety` option will enable content safety filtering.
|
|
79
79
|
|
|
80
80
|
```ts highlight="7"
|
|
81
|
-
import {
|
|
81
|
+
import { transcribe } from 'ai';
|
|
82
82
|
import { assemblyai } from '@ai-sdk/assemblyai';
|
|
83
83
|
import { type AssemblyAITranscriptionModelOptions } from '@ai-sdk/assemblyai';
|
|
84
84
|
import { readFile } from 'fs/promises';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/assemblyai",
|
|
3
|
-
"version": "3.0.0-canary.
|
|
3
|
+
"version": "3.0.0-canary.50",
|
|
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.18",
|
|
33
|
-
"@ai-sdk/provider-utils": "5.0.0-canary.
|
|
33
|
+
"@ai-sdk/provider-utils": "5.0.0-canary.48"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "22.19.19",
|