@elizaos/plugin-elevenlabs 1.0.4 → 1.0.5

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 (1) hide show
  1. package/package.json +71 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-elevenlabs",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -40,7 +40,76 @@
40
40
  },
41
41
  "agentConfig": {
42
42
  "pluginType": "elizaos:plugin:1.0.0",
43
- "pluginParameters": {}
43
+ "pluginParameters": {
44
+ "ELEVENLABS_API_KEY": {
45
+ "type": "string",
46
+ "description": "Primary ElevenLabs API key used for authenticating requests",
47
+ "required": true,
48
+ "sensitive": true
49
+ },
50
+ "ELEVENLABS_XI_API_KEY": {
51
+ "type": "string",
52
+ "description": "Alternative/legacy ElevenLabs API key name; used if ELEVENLABS_API_KEY is not provided",
53
+ "required": false,
54
+ "sensitive": true
55
+ },
56
+ "ELEVENLABS_VOICE_ID": {
57
+ "type": "string",
58
+ "description": "ID of the voice to synthesize with",
59
+ "required": false,
60
+ "default": "EXAVITQu4vr4xnSDxMaL",
61
+ "sensitive": false
62
+ },
63
+ "ELEVENLABS_MODEL_ID": {
64
+ "type": "string",
65
+ "description": "Model identifier to use for TTS generation",
66
+ "required": false,
67
+ "default": "eleven_monolingual_v1",
68
+ "sensitive": false
69
+ },
70
+ "ELEVENLABS_VOICE_STABILITY": {
71
+ "type": "number",
72
+ "description": "Voice stability factor (0-1) influencing consistency of speech",
73
+ "required": false,
74
+ "default": "0.5",
75
+ "sensitive": false
76
+ },
77
+ "ELEVENLABS_OPTIMIZE_STREAMING_LATENCY": {
78
+ "type": "number",
79
+ "description": "Latency optimization level for streaming audio (0-4)",
80
+ "required": false,
81
+ "default": "0",
82
+ "sensitive": false
83
+ },
84
+ "ELEVENLABS_OUTPUT_FORMAT": {
85
+ "type": "string",
86
+ "description": "Audio output format returned by the API (e.g., pcm_16000)",
87
+ "required": false,
88
+ "default": "pcm_16000",
89
+ "sensitive": false
90
+ },
91
+ "ELEVENLABS_VOICE_SIMILARITY_BOOST": {
92
+ "type": "number",
93
+ "description": "Similarity boost factor (0-1) affecting how closely the voice matches the target",
94
+ "required": false,
95
+ "default": "0.75",
96
+ "sensitive": false
97
+ },
98
+ "ELEVENLABS_VOICE_STYLE": {
99
+ "type": "number",
100
+ "description": "Style intensity (0-1) for the generated voice",
101
+ "required": false,
102
+ "default": "0",
103
+ "sensitive": false
104
+ },
105
+ "ELEVENLABS_VOICE_USE_SPEAKER_BOOST": {
106
+ "type": "boolean",
107
+ "description": "Flag to enable or disable speaker boost feature",
108
+ "required": false,
109
+ "default": "true",
110
+ "sensitive": false
111
+ }
112
+ }
44
113
  },
45
114
  "gitHead": "646c632924826e2b75c2304a75ee56959fe4a460",
46
115
  "devDependencies": {