Your personal AI assistant powered by DIVA 2.5 32B. Chat with conversation memory, voice input, and OpenAI-compatible API.
Your chats are saved and the AI remembers context across messages.
Speak your messages with Whisper-powered transcription in any language.
Use our API with any OpenAI-compatible client or curl commands.
# 1. Get OTP
curl -X POST http://localhost:8080/auth/send-otp \
-H "Content-Type: application/json" \
-d '{"phone": "+6281234567890"}'
# 2. Verify OTP (check server logs for OTP)
curl -X POST http://localhost:8080/auth/verify-otp \
-H "Content-Type: application/json" \
-d '{"phone": "+6281234567890", "otp": "123456"}'
# 3. Chat! (use token from step 2)
curl -X POST http://localhost:8080/v1/chat/completions \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"messages": [{"role": "user", "content": "Hello!"}]}'