v1.0.4 - init version

This commit is contained in:
19 changed files with 2049 additions and 0 deletions

16
podman-generate.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
if [ -z "$1" ]; then
echo "Usage: $0 <text> <output_file>"
exit 1
fi
if [ -z "$2" ]; then
echo "Usage: $0 <text> <output_file>"
exit 1
fi
curl -X POST https://localhost:8443/tts -H "Content-Type: application/json" \
-d "{\"text\": \"$1\"}" \
--insecure \
-o "$2"