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 files

The 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>

Files changed (2) hide show
  1. VERSION +1 -1
  2. start.sh +1 -1
VERSION CHANGED
@@ -1 +1 @@
1
- 4.0.5
 
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.json &
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