@elizaos/plugin-elevenlabs 2.0.3-beta.2 → 2.0.3-beta.4

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.
Files changed (2) hide show
  1. package/package.json +4 -3
  2. package/registry-entry.json +169 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-elevenlabs",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "type": "module",
5
5
  "main": "dist/cjs/index.node.cjs",
6
6
  "module": "dist/node/index.node.js",
@@ -41,11 +41,12 @@
41
41
  }
42
42
  },
43
43
  "files": [
44
+ "registry-entry.json",
44
45
  "dist"
45
46
  ],
46
47
  "dependencies": {
47
48
  "@elevenlabs/elevenlabs-js": "^2.16.0",
48
- "@elizaos/core": "2.0.3-beta.2"
49
+ "@elizaos/core": "2.0.3-beta.4"
49
50
  },
50
51
  "devDependencies": {
51
52
  "@biomejs/biome": "^2.4.14",
@@ -180,5 +181,5 @@
180
181
  }
181
182
  }
182
183
  },
183
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
184
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
184
185
  }
@@ -0,0 +1,169 @@
1
+ {
2
+ "id": "elevenlabs",
3
+ "name": "Elevenlabs",
4
+ "description": "ElevenLabs voice plugin for text-to-speech generation and conversational audio output.",
5
+ "npmName": "@elizaos/plugin-elevenlabs",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": ["voice", "text-to-speech", "audio", "elevenlabs"],
9
+ "config": {
10
+ "ELEVENLABS_API_KEY": {
11
+ "type": "secret",
12
+ "required": true,
13
+ "sensitive": true,
14
+ "label": "Api Key",
15
+ "help": "Primary ElevenLabs API key used for authenticating requests",
16
+ "advanced": false
17
+ },
18
+ "ELEVENLABS_MODEL_ID": {
19
+ "type": "string",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "default": "eleven_multilingual_v2",
23
+ "label": "Model Id",
24
+ "help": "Model identifier to use for TTS generation",
25
+ "placeholder": "e.g., gpt-4o, claude-sonnet-4-20250514",
26
+ "advanced": false
27
+ },
28
+ "ELEVENLABS_VOICE_ID": {
29
+ "type": "string",
30
+ "required": false,
31
+ "sensitive": false,
32
+ "default": "EXAVITQu4vr4xnSDxMaL",
33
+ "label": "Voice Id",
34
+ "help": "ID of the voice to synthesize with",
35
+ "advanced": false
36
+ },
37
+ "ELEVENLABS_BROWSER_URL": {
38
+ "type": "url",
39
+ "required": false,
40
+ "sensitive": false,
41
+ "label": "Browser Url",
42
+ "help": "Optional browser-safe proxy base URL that injects the API key server-side",
43
+ "advanced": false
44
+ },
45
+ "ELEVENLABS_STT_DIARIZE": {
46
+ "type": "boolean",
47
+ "required": false,
48
+ "sensitive": false,
49
+ "default": "false",
50
+ "label": "Stt Diarize",
51
+ "help": "Enable speaker diarization to identify different speakers",
52
+ "advanced": false
53
+ },
54
+ "ELEVENLABS_VOICE_STYLE": {
55
+ "type": "number",
56
+ "required": false,
57
+ "sensitive": false,
58
+ "default": "0",
59
+ "label": "Voice Style",
60
+ "help": "Style intensity (0-1) for the generated voice",
61
+ "advanced": false
62
+ },
63
+ "ELEVENLABS_STT_MODEL_ID": {
64
+ "type": "string",
65
+ "required": false,
66
+ "sensitive": false,
67
+ "default": "scribe_v1",
68
+ "label": "Stt Model Id",
69
+ "help": "Model identifier to use for speech-to-text transcription",
70
+ "placeholder": "e.g., whisper-1",
71
+ "advanced": false
72
+ },
73
+ "ELEVENLABS_OUTPUT_FORMAT": {
74
+ "type": "string",
75
+ "required": false,
76
+ "sensitive": false,
77
+ "default": "mp3_44100_128",
78
+ "label": "Output Format",
79
+ "help": "Audio output format returned by the API (e.g., mp3_44100_128 or pcm_16000)",
80
+ "advanced": false
81
+ },
82
+ "ELEVENLABS_VOICE_STABILITY": {
83
+ "type": "number",
84
+ "required": false,
85
+ "sensitive": false,
86
+ "default": "0.5",
87
+ "label": "Voice Stability",
88
+ "help": "Voice stability factor (0-1) influencing consistency of speech",
89
+ "advanced": false
90
+ },
91
+ "ELEVENLABS_STT_NUM_SPEAKERS": {
92
+ "type": "number",
93
+ "required": false,
94
+ "sensitive": false,
95
+ "label": "Stt Num Speakers",
96
+ "help": "Expected number of speakers for diarization (1-32)",
97
+ "advanced": false
98
+ },
99
+ "ELEVENLABS_STT_LANGUAGE_CODE": {
100
+ "type": "string",
101
+ "required": false,
102
+ "sensitive": false,
103
+ "label": "Stt Language Code",
104
+ "help": "Language code for transcription (e.g., 'en', 'es'). Leave empty for automatic detection",
105
+ "advanced": false
106
+ },
107
+ "ELEVENLABS_STT_TAG_AUDIO_EVENTS": {
108
+ "type": "boolean",
109
+ "required": false,
110
+ "sensitive": false,
111
+ "default": "false",
112
+ "label": "Stt Tag Audio Events",
113
+ "help": "Tag audio events like laughter, applause, etc.",
114
+ "advanced": false
115
+ },
116
+ "ELEVENLABS_VOICE_SIMILARITY_BOOST": {
117
+ "type": "number",
118
+ "required": false,
119
+ "sensitive": false,
120
+ "default": "0.75",
121
+ "label": "Voice Similarity Boost",
122
+ "help": "Similarity boost factor (0-1) affecting how closely the voice matches the target",
123
+ "advanced": false
124
+ },
125
+ "ELEVENLABS_VOICE_USE_SPEAKER_BOOST": {
126
+ "type": "boolean",
127
+ "required": false,
128
+ "sensitive": false,
129
+ "default": "true",
130
+ "label": "Voice Use Speaker Boost",
131
+ "help": "Flag to enable or disable speaker boost feature",
132
+ "advanced": false
133
+ },
134
+ "ELEVENLABS_OPTIMIZE_STREAMING_LATENCY": {
135
+ "type": "number",
136
+ "required": false,
137
+ "sensitive": false,
138
+ "default": "0",
139
+ "label": "Optimize Streaming Latency",
140
+ "help": "Latency optimization level for streaming audio (0-4)",
141
+ "advanced": false
142
+ },
143
+ "ELEVENLABS_STT_TIMESTAMPS_GRANULARITY": {
144
+ "type": "string",
145
+ "required": false,
146
+ "sensitive": false,
147
+ "default": "word",
148
+ "label": "Stt Timestamps Granularity",
149
+ "help": "Timestamp detail level: 'none', 'word', or 'character'",
150
+ "advanced": false
151
+ }
152
+ },
153
+ "render": {
154
+ "visible": true,
155
+ "pinTo": [],
156
+ "style": "card",
157
+ "icon": "Mic",
158
+ "group": "voice",
159
+ "groupOrder": 3,
160
+ "actions": ["enable", "configure"]
161
+ },
162
+ "resources": {
163
+ "homepage": "https://github.com/elizaos-plugins/plugin-elevenlabs#readme",
164
+ "repository": "https://github.com/elizaos-plugins/plugin-elevenlabs"
165
+ },
166
+ "dependsOn": [],
167
+ "kind": "plugin",
168
+ "subtype": "voice"
169
+ }