Spaces:
Runtime error
Runtime error
Peter Michael Gits Claude commited on
Commit ·
0d4c595
1
Parent(s): 0c9fa0b
Fix config file extension mismatch in start.sh - use TOML not JSON
Browse filesThe start.sh script was trying to load config-stt-en_fr-hf.json but only
config-stt-en_fr-hf.toml exists, causing moshi-server startup failure.
- Fix: Change start.sh to use .toml extension to match existing file
- Version bump: 4.0.5 → 4.0.6
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
VERSION
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
4.0.
|
|
|
|
| 1 |
+
4.0.6
|
start.sh
CHANGED
|
@@ -21,7 +21,7 @@ echo "Starting Python frontend and official moshi-server..."
|
|
| 21 |
|
| 22 |
# Start moshi-server in background
|
| 23 |
cd /app
|
| 24 |
-
moshi-server worker --config configs/config-stt-en_fr-hf.
|
| 25 |
MOSHI_PID=$!
|
| 26 |
|
| 27 |
# Wait a moment for moshi-server to start
|
|
|
|
| 21 |
|
| 22 |
# Start moshi-server in background
|
| 23 |
cd /app
|
| 24 |
+
moshi-server worker --config configs/config-stt-en_fr-hf.toml &
|
| 25 |
MOSHI_PID=$!
|
| 26 |
|
| 27 |
# Wait a moment for moshi-server to start
|