Enviar Mensagem (cURL):
curl -X POST "http://localhost:8000/send-message" \
-H "Content-Type: application/json" \
-d '{
"conversation_id": "user_123",
"text": "Olá"
}'
Resposta:
{
"conversation_id": "user_123",
"response": "Olá! Sou o assistente virtual da HSB Dental...",
"finished": false
}
JavaScript (Fetch):
const response = await fetch('/send-message', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
conversation_id: 'user_123',
text: 'Olá'
})
});
const data = await response.json();