Build and run AI personas for adult products. Create profiles, attach media, chat, and integrate by API.
curl -sS -X POST "$API_BASE/handoff" \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{ "profile_id": "$PROFILE_ID", "user_ref": "vvio-USER-123", "locale": "en" }'
curl -sS -X POST "$API_BASE/chat" \ -H "Authorization: Bearer $TOKEN" \ -H "Content-Type: application/json" \ -d '{ "conversation_id": "{from_handoff}", "text": "Hey there" }'
const r = await fetch('$API_BASE/chat', { method: 'POST', headers: { 'Authorization': 'Bearer $TOKEN', 'Content-Type': 'application/json' }, body: JSON.stringify({ conversation_id: '{from_handoff}', text: 'Hi' }) }); const json = await r.json();
import requests resp = requests.post('$API_BASE/chat', headers={'Authorization': 'Bearer $TOKEN'}, json={'conversation_id': '{from_handoff}', 'text': 'Hi'}) print(resp.json())
{ "conversation_id": "{from_handoff}", "text": "Hi", "options": { "stream": false } }
[email protected]