agentvibes 2.9.0 → 2.9.1
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.
|
@@ -51,11 +51,12 @@ fi
|
|
|
51
51
|
|
|
52
52
|
# Common voice models to download
|
|
53
53
|
COMMON_VOICES=(
|
|
54
|
-
"en_US-lessac-medium" # Default, clear male
|
|
55
|
-
"en_US-amy-medium" # Warm female
|
|
56
|
-
"en_US-joe-medium" # Professional male
|
|
57
|
-
"en_US-ryan-high" # Expressive male
|
|
58
|
-
"en_US-libritts-high" # Premium quality
|
|
54
|
+
"en_US-lessac-medium" # Default, clear male (13MB)
|
|
55
|
+
"en_US-amy-medium" # Warm female (13MB)
|
|
56
|
+
"en_US-joe-medium" # Professional male (13MB)
|
|
57
|
+
"en_US-ryan-high" # Expressive male (30MB)
|
|
58
|
+
"en_US-libritts-high" # Premium quality (57MB)
|
|
59
|
+
"16Speakers" # Multi-speaker: 12 US + 4 UK voices (77MB) - REQUIRED for BMAD agents
|
|
59
60
|
)
|
|
60
61
|
|
|
61
62
|
echo "🎙️ Piper Voice Model Downloader"
|
|
@@ -163,3 +164,7 @@ if [[ $DOWNLOADED -gt 0 ]]; then
|
|
|
163
164
|
echo " /agent-vibes:provider switch piper"
|
|
164
165
|
echo " /agent-vibes:preview"
|
|
165
166
|
fi
|
|
167
|
+
|
|
168
|
+
# Always exit successfully even if some downloads failed
|
|
169
|
+
# (individual failures are tracked in FAILED counter)
|
|
170
|
+
exit 0
|
|
@@ -223,7 +223,7 @@ download_voice() {
|
|
|
223
223
|
|
|
224
224
|
# Download ONNX model
|
|
225
225
|
echo " Downloading model file..."
|
|
226
|
-
if ! curl -L --progress-bar -o "$voice_dir/${voice_name}.onnx" "$onnx_url"; then
|
|
226
|
+
if ! curl -L --progress-bar --connect-timeout 30 --max-time 300 -o "$voice_dir/${voice_name}.onnx" "$onnx_url"; then
|
|
227
227
|
echo "❌ Failed to download voice model"
|
|
228
228
|
rm -f "$voice_dir/${voice_name}.onnx"
|
|
229
229
|
return 1
|
|
@@ -231,7 +231,7 @@ download_voice() {
|
|
|
231
231
|
|
|
232
232
|
# Download JSON config
|
|
233
233
|
echo " Downloading config file..."
|
|
234
|
-
if ! curl -L -s -o "$voice_dir/${voice_name}.onnx.json" "$json_url"; then
|
|
234
|
+
if ! curl -L -s --connect-timeout 30 --max-time 60 -o "$voice_dir/${voice_name}.onnx.json" "$json_url"; then
|
|
235
235
|
echo "❌ Failed to download voice config"
|
|
236
236
|
rm -f "$voice_dir/${voice_name}.onnx" "$voice_dir/${voice_name}.onnx.json"
|
|
237
237
|
return 1
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "agentvibes",
|
|
4
|
-
"version": "2.9.
|
|
4
|
+
"version": "2.9.1",
|
|
5
5
|
"description": "Now your AI Agents can finally talk back! Professional TTS voice for Claude Code and Claude Desktop (via MCP) with multi-provider support.",
|
|
6
6
|
"homepage": "https://agentvibes.org",
|
|
7
7
|
"keywords": [
|