@elizaos/plugin-elevenlabs 2.0.0-alpha.2 → 2.0.0-alpha.3
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/README.md +3 -3
- package/dist/cjs/index.node.cjs +21668 -16438
- package/dist/cjs/index.node.js.map +246 -119
- package/dist/node/index.node.js +21667 -16437
- package/dist/node/index.node.js.map +246 -119
- package/package.json +15 -4
- package/dist/browser/index.d.ts +0 -2
- package/dist/cjs/index.d.ts +0 -2
- package/dist/index.browser.d.ts +0 -3
- package/dist/index.d.ts +0 -40
- package/dist/index.node.d.ts +0 -2
- package/dist/node/index.d.ts +0 -2
- package/dist/test.d.ts +0 -6
- package/dist/utils.d.ts +0 -18
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ The plugin requires these environment variables (can be set in .env file or char
|
|
|
18
18
|
"settings": {
|
|
19
19
|
"ELEVENLABS_API_KEY": "your_elevenlabs_api_key",
|
|
20
20
|
"ELEVENLABS_VOICE_ID": "EXAVITQu4vr4xnSDxMaL",
|
|
21
|
-
"ELEVENLABS_MODEL_ID": "
|
|
21
|
+
"ELEVENLABS_MODEL_ID": "eleven_multilingual_v2",
|
|
22
22
|
"ELEVENLABS_VOICE_STABILITY": "0.5",
|
|
23
23
|
"ELEVENLABS_OPTIMIZE_STREAMING_LATENCY": "0",
|
|
24
24
|
"ELEVENLABS_OUTPUT_FORMAT": "pcm_16000",
|
|
@@ -34,7 +34,7 @@ Or in `.env` file:
|
|
|
34
34
|
ELEVENLABS_API_KEY=your_elevenlabs_api_key
|
|
35
35
|
# Optional overrides:
|
|
36
36
|
ELEVENLABS_VOICE_ID=EXAVITQu4vr4xnSDxMaL
|
|
37
|
-
ELEVENLABS_MODEL_ID=
|
|
37
|
+
ELEVENLABS_MODEL_ID=eleven_multilingual_v2
|
|
38
38
|
ELEVENLABS_VOICE_STABILITY=0.5
|
|
39
39
|
ELEVENLABS_OPTIMIZE_STREAMING_LATENCY=0
|
|
40
40
|
ELEVENLABS_OUTPUT_FORMAT=pcm_16000
|
|
@@ -47,7 +47,7 @@ ELEVENLABS_VOICE_USE_SPEAKER_BOOST=true
|
|
|
47
47
|
|
|
48
48
|
- `ELEVENLABS_API_KEY` (required): Your ElevenLabs API credentials.
|
|
49
49
|
- `ELEVENLABS_VOICE_ID`: Optional. Voice selection ID. Defaults to `EXAVITQu4vr4xnSDxMaL`.
|
|
50
|
-
- `ELEVENLABS_MODEL_ID`: Optional. Speech model ID. Defaults to `
|
|
50
|
+
- `ELEVENLABS_MODEL_ID`: Optional. Speech model ID. Defaults to `eleven_multilingual_v2`.
|
|
51
51
|
- `ELEVENLABS_VOICE_STABILITY`: Optional. Controls voice stability. Defaults to `0.5`.
|
|
52
52
|
- `ELEVENLABS_OPTIMIZE_STREAMING_LATENCY`: Optional. Adjusts streaming latency. Defaults to `0`.
|
|
53
53
|
- `ELEVENLABS_OUTPUT_FORMAT`: Optional. Output format (e.g., pcm_16000). Defaults to `pcm_16000`.
|