TTS API
TTS Helper has a bare bones API.
If you have software that can send request out, you can trigger certain TTS Helper features with them.
TTS Helper’s API listens for request here:
http://localhost:12589
Currently platform
supports twitch
, youtube
. If you pass an unknown platform, we’ll render a ?
HTTP Type | EndPoint | Body |
---|---|---|
POST | /tts |
{ "username": "Panku", "platform": "twitch", "text": "Hello world!", "char_limit": 300 } |
POST | /toggle-pause-status |
No body for this request. |
POST | /skip-current-playing |
No body for this request. |
POST | /ai-tts |
{ "username": "Panku", "platform": "twitch", "text": "How're you?", "char_limit": 300 } |
POST | /ai-response |
{ "username": "Panku", "platform": "twitch", "text": "How're you?", "char_limit": 300 } |
POST | /react-ai-image |
{ "text": "What do you see?", "image": "*B64 encoded image here*" } |
POST | /trigger-ai-vision |
{ "username": "Panku", "platform": "twitch", "text": "What do you see?", "char_limit": 300 } |