Uploaded sanitized BC250/ROCm Repository.

This commit is contained in:
Fabian
2026-08-20 00:45:43 +02:00
parent 7d2184f1e8
commit d7d22e93b3
678 changed files with 65963 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/bash
echo "=== TTS Proxy Test ==="
curl -s -w '\nHTTP: %{http_code} Size: %{size_download}\n' \
-o /tmp/proxy_verify.wav \
http://localhost:9090/api/proxy/tts \
-H 'Content-Type: application/json' \
-d '{"input":"This is a verification test.","voice":"Vivian","language":"en","speed":1.0}'
echo "=== File check ==="
file /tmp/proxy_verify.wav 2>/dev/null
ls -la /tmp/proxy_verify.wav 2>/dev/null
echo "=== New speakText in HTML ==="
curl -s http://localhost:9090/ | grep -c 'Generating audio'
curl -s http://localhost:9090/ | grep -c 'TTS not ready'
curl -s http://localhost:9090/ | grep -c 'targetDiv'