@elizaos/plugin-elevenlabs 1.5.13 → 1.6.0
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 +8 -1
- package/dist/browser/index.browser.js +3 -98
- package/dist/browser/index.browser.js.map +4 -2394
- package/dist/cjs/index.node.cjs +160 -9
- package/dist/cjs/index.node.js.map +3 -3
- package/dist/index.d.ts +16 -5
- package/dist/node/index.node.js +159 -8
- package/dist/node/index.node.js.map +3 -3
- package/package.json +41 -1
package/README.md
CHANGED
|
@@ -54,7 +54,14 @@ ELEVENLABS_VOICE_USE_SPEAKER_BOOST=true
|
|
|
54
54
|
- `ELEVENLABS_VOICE_SIMILARITY_BOOST`: Optional. Adjusts similarity to the reference voice (0-1). Defaults to `0.75`.
|
|
55
55
|
- `ELEVENLABS_VOICE_STYLE`: Optional. Controls voice style intensity (0-1). Defaults to `0`.
|
|
56
56
|
- `ELEVENLABS_VOICE_USE_SPEAKER_BOOST`: Optional. Enhances speaker presence (true/false). Defaults to `true`.
|
|
57
|
+
- `ELEVENLABS_STT_MODEL_ID`: Optional. Speech-to-text model ID. Defaults to `scribe_v1`.
|
|
58
|
+
- `ELEVENLABS_STT_LANGUAGE_CODE`: Optional. Language code for transcription (e.g., 'en', 'es'). Leave empty for automatic detection.
|
|
59
|
+
- `ELEVENLABS_STT_TIMESTAMPS_GRANULARITY`: Optional. Timestamp detail level: 'none', 'word', or 'character'. Defaults to `word`.
|
|
60
|
+
- `ELEVENLABS_STT_DIARIZE`: Optional. Enable speaker diarization (true/false). Defaults to `false`.
|
|
61
|
+
- `ELEVENLABS_STT_NUM_SPEAKERS`: Optional. Expected number of speakers for diarization (1-32).
|
|
62
|
+
- `ELEVENLABS_STT_TAG_AUDIO_EVENTS`: Optional. Tag audio events like laughter, applause (true/false). Defaults to `false`.
|
|
57
63
|
|
|
58
|
-
The plugin provides the following model
|
|
64
|
+
The plugin provides the following model types:
|
|
59
65
|
|
|
60
66
|
- `TEXT_TO_SPEECH`: Converts text into spoken audio.
|
|
67
|
+
- `TRANSCRIPTION`: Converts audio/video into text transcripts.
|