@ai-sdk/elevenlabs 2.0.13 → 2.0.14
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 +6 -0
- package/README.md +8 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -11,6 +11,14 @@ The ElevenLabs provider is available in the `@ai-sdk/elevenlabs` module. You can
|
|
|
11
11
|
npm i @ai-sdk/elevenlabs
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
## Skill for Coding Agents
|
|
15
|
+
|
|
16
|
+
If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
|
|
17
|
+
|
|
18
|
+
```shell
|
|
19
|
+
npx skills add vercel/ai
|
|
20
|
+
```
|
|
21
|
+
|
|
14
22
|
## Provider Instance
|
|
15
23
|
|
|
16
24
|
You can import the default provider instance `elevenlabs` from `@ai-sdk/elevenlabs`:
|
package/dist/index.js
CHANGED
|
@@ -364,7 +364,7 @@ var ElevenLabsSpeechModel = class {
|
|
|
364
364
|
};
|
|
365
365
|
|
|
366
366
|
// src/version.ts
|
|
367
|
-
var VERSION = true ? "2.0.
|
|
367
|
+
var VERSION = true ? "2.0.14" : "0.0.0-test";
|
|
368
368
|
|
|
369
369
|
// src/elevenlabs-provider.ts
|
|
370
370
|
function createElevenLabs(options = {}) {
|
package/dist/index.mjs
CHANGED
|
@@ -353,7 +353,7 @@ var ElevenLabsSpeechModel = class {
|
|
|
353
353
|
};
|
|
354
354
|
|
|
355
355
|
// src/version.ts
|
|
356
|
-
var VERSION = true ? "2.0.
|
|
356
|
+
var VERSION = true ? "2.0.14" : "0.0.0-test";
|
|
357
357
|
|
|
358
358
|
// src/elevenlabs-provider.ts
|
|
359
359
|
function createElevenLabs(options = {}) {
|