@ai-sdk/revai 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 +16 -0
- package/README.md +1 -1
- package/dist/index.js +1 -1
- package/docs/160-revai.mdx +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @ai-sdk/revai
|
|
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 { revai } from '@ai-sdk/revai';
|
|
|
33
33
|
|
|
34
34
|
```ts
|
|
35
35
|
import { revai } from '@ai-sdk/revai';
|
|
36
|
-
import {
|
|
36
|
+
import { transcribe } from 'ai';
|
|
37
37
|
|
|
38
38
|
const { text } = await transcribe({
|
|
39
39
|
model: revai.transcription('machine'),
|
package/dist/index.js
CHANGED
|
@@ -458,7 +458,7 @@ var revaiTranscriptionResponseSchema = z3.object({
|
|
|
458
458
|
});
|
|
459
459
|
|
|
460
460
|
// src/version.ts
|
|
461
|
-
var VERSION = true ? "3.0.0-canary.
|
|
461
|
+
var VERSION = true ? "3.0.0-canary.50" : "0.0.0-test";
|
|
462
462
|
|
|
463
463
|
// src/revai-provider.ts
|
|
464
464
|
function createRevai(options = {}) {
|
package/docs/160-revai.mdx
CHANGED
|
@@ -78,7 +78,7 @@ const model = revai.transcription('machine');
|
|
|
78
78
|
You can also pass additional provider-specific options using the `providerOptions` argument. For example, supplying the input language in ISO-639-1 (e.g. `en`) format can sometimes improve transcription performance if known beforehand.
|
|
79
79
|
|
|
80
80
|
```ts highlight="7"
|
|
81
|
-
import {
|
|
81
|
+
import { transcribe } from 'ai';
|
|
82
82
|
import { revai } from '@ai-sdk/revai';
|
|
83
83
|
import { type RevaiTranscriptionModelOptions } from '@ai-sdk/revai';
|
|
84
84
|
import { readFile } from 'fs/promises';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/revai",
|
|
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",
|