Lauffähige Cloning Version

This commit is contained in:
2026-06-19 15:52:58 +02:00
parent 569970e339
commit a5230964cb
5 changed files with 266 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
set -euo pipefail
cd "$(dirname "$0")"
HEALTH_URL="http://localhost:8093/health"
HEALTH_URL="http://localhost:8091/health"
MAX_WAIT="${MAX_WAIT:-180}"
MODEL="${QWEN3_TTS_CLONE_MODEL:-Qwen/Qwen3-TTS-12Hz-1.7B-Base}"
@@ -18,13 +18,13 @@ printf " [%ds]
" $(( SECONDS - t0 ))
printf " Modell %s
" "$MODEL"
printf " API http://localhost:8093
printf " API http://localhost:8091
"
while (( SECONDS - t0 < MAX_WAIT )); do
if curl -sf "$HEALTH_URL" >/dev/null 2>&1; then
printf "✓ Clone bereit: http://localhost:8093 [%ds]
printf "✓ Clone bereit: http://localhost:8091 [%ds]
" $(( SECONDS - t0 ))
exit 0
fi