@ai-sdk/elevenlabs 3.0.10 → 3.0.12
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/90-elevenlabs.mdx +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @ai-sdk/elevenlabs
|
|
2
2
|
|
|
3
|
+
## 3.0.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [cd06458]
|
|
8
|
+
- @ai-sdk/provider-utils@5.0.11
|
|
9
|
+
|
|
10
|
+
## 3.0.11
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [31c7be8]
|
|
15
|
+
- @ai-sdk/provider-utils@5.0.10
|
|
16
|
+
|
|
3
17
|
## 3.0.10
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -384,7 +384,7 @@ var ElevenLabsSpeechModel = class _ElevenLabsSpeechModel {
|
|
|
384
384
|
};
|
|
385
385
|
|
|
386
386
|
// src/version.ts
|
|
387
|
-
var VERSION = true ? "3.0.
|
|
387
|
+
var VERSION = true ? "3.0.12" : "0.0.0-test";
|
|
388
388
|
|
|
389
389
|
// src/elevenlabs-provider.ts
|
|
390
390
|
function createElevenLabs(options = {}) {
|
package/docs/90-elevenlabs.mdx
CHANGED
|
@@ -176,7 +176,7 @@ const model = elevenLabs.transcription('scribe_v1');
|
|
|
176
176
|
|
|
177
177
|
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.
|
|
178
178
|
|
|
179
|
-
```ts highlight="
|
|
179
|
+
```ts highlight="10-14"
|
|
180
180
|
import { transcribe } from 'ai';
|
|
181
181
|
import {
|
|
182
182
|
elevenLabs,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/elevenlabs",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.12",
|
|
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.3",
|
|
33
|
-
"@ai-sdk/provider-utils": "5.0.
|
|
33
|
+
"@ai-sdk/provider-utils": "5.0.11"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "22.19.19",
|