curl -X POST https://api.upliftai.org/v1/realtime-assistants/adhoc/createSession \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"participantName": "Test User",
"config": {
"session": {
"ttl": 1800
},
"agent": {
"instructions": "You are a specialized assistant for this specific session.",
"initialGreeting": true,
"greetingInstructions": "Welcome! This is a custom session.",
"tools": []
},
"stt": {
"default": {
"provider": "groq",
"model": "whisper-large-v3",
"language": "en"
}
},
"tts": {
"default": {
"provider": "upliftai",
"voiceId": "john",
"outputFormat": "MP3_22050_32"
}
},
"llm": {
"default": {
"provider": "groq",
"model": "openai/gpt-oss-120b"
}
}
}
}'