@ai-sdk/assemblyai 3.0.0-canary.48 → 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 CHANGED
@@ -1,5 +1,21 @@
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
+
12
+ ## 3.0.0-canary.49
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies [bae5e2b]
17
+ - @ai-sdk/provider-utils@5.0.0-canary.47
18
+
3
19
  ## 3.0.0-canary.48
4
20
 
5
21
  ### 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 { experimental_transcribe as transcribe } from 'ai';
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.48" : "0.0.0-test";
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 = {}) {
@@ -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 { experimental_transcribe as transcribe } from 'ai';
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.48",
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.46"
33
+ "@ai-sdk/provider-utils": "5.0.0-canary.48"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "22.19.19",