Files
sbv2-api/test.py
tuna2134 d4795ad139 fix
2024-09-10 09:28:28 +00:00

9 lines
191 B
Python

import requests
res = requests.post('http://localhost:3000/synthesize', json={
"text": "眠たい"
})
res.raise_for_status()
with open('output.wav', 'wb') as f:
f.write(res.content)