Integrate ChatGPT with OBS featuring natural speech capabilities! Walk through the setup process, on how to call OpenAI's powerful APIs with OBS for dynamic, voice-enabled AI interactions in your live streams.
URL/API Source: https://github.com/royshil/obs-urlsou...
LocalVocal Transcription: https://github.com/royshil/obs-localv...
Request body template for ChatGPT:
{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "user",
"content": "{{input}}"
}
]
}
URL: h ttps://api.openai.com/v1/chat/completions
Request body template for Text-to-Speech:
{
"model": "tts-1",
"input": "{{input}}.",
"voice": "alloy"
}
URL: h ttps://api.openai.com/v1/audio/speech