@elizaos/plugin-elevenlabs 1.5.12 → 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 +161 -10
- package/dist/cjs/index.node.js.map +3 -3
- package/dist/index.d.ts +16 -5
- package/dist/node/index.node.js +160 -9
- package/dist/node/index.node.js.map +3 -3
- package/package.json +41 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-elevenlabs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/cjs/index.node.cjs",
|
|
6
6
|
"module": "dist/node/index.node.js",
|
|
@@ -134,6 +134,46 @@
|
|
|
134
134
|
"required": false,
|
|
135
135
|
"default": "true",
|
|
136
136
|
"sensitive": false
|
|
137
|
+
},
|
|
138
|
+
"ELEVENLABS_STT_MODEL_ID": {
|
|
139
|
+
"type": "string",
|
|
140
|
+
"description": "Model identifier to use for speech-to-text transcription",
|
|
141
|
+
"required": false,
|
|
142
|
+
"default": "scribe_v1",
|
|
143
|
+
"sensitive": false
|
|
144
|
+
},
|
|
145
|
+
"ELEVENLABS_STT_LANGUAGE_CODE": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "Language code for transcription (e.g., 'en', 'es'). Leave empty for automatic detection",
|
|
148
|
+
"required": false,
|
|
149
|
+
"sensitive": false
|
|
150
|
+
},
|
|
151
|
+
"ELEVENLABS_STT_TIMESTAMPS_GRANULARITY": {
|
|
152
|
+
"type": "string",
|
|
153
|
+
"description": "Timestamp detail level: 'none', 'word', or 'character'",
|
|
154
|
+
"required": false,
|
|
155
|
+
"default": "word",
|
|
156
|
+
"sensitive": false
|
|
157
|
+
},
|
|
158
|
+
"ELEVENLABS_STT_DIARIZE": {
|
|
159
|
+
"type": "boolean",
|
|
160
|
+
"description": "Enable speaker diarization to identify different speakers",
|
|
161
|
+
"required": false,
|
|
162
|
+
"default": "false",
|
|
163
|
+
"sensitive": false
|
|
164
|
+
},
|
|
165
|
+
"ELEVENLABS_STT_NUM_SPEAKERS": {
|
|
166
|
+
"type": "number",
|
|
167
|
+
"description": "Expected number of speakers for diarization (1-32)",
|
|
168
|
+
"required": false,
|
|
169
|
+
"sensitive": false
|
|
170
|
+
},
|
|
171
|
+
"ELEVENLABS_STT_TAG_AUDIO_EVENTS": {
|
|
172
|
+
"type": "boolean",
|
|
173
|
+
"description": "Tag audio events like laughter, applause, etc.",
|
|
174
|
+
"required": false,
|
|
175
|
+
"default": "false",
|
|
176
|
+
"sensitive": false
|
|
137
177
|
}
|
|
138
178
|
}
|
|
139
179
|
},
|