AI in OBS! OpenAI Realtime Caption Translation [Tutorial]

Опубликовано: 19 Март 2026
на канале: Roy Shilkrot
21,247
422

AI in OBS? oh yes! Step-by-step tutorial on integrating #chatgpt and Language Model #llm into #obs using LocalVocal's speech transcription and the URL/API source #plugins.

Download: https://github.com/royshil/obs-urlsou... https://github.com/royshil/obs-localv...
Learn: https://obsproject.com/forum/resource...

Request body template:
{
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Hello!"
}
]
}
URL: h ttps://api.openai.com/v1/chat/completions
Headers:
Content-Type: application/json
Authorization: Bearer $OPENAI_API_KEY