🤖 AI Chat

Your personal AI assistant powered by DIVA 2.5 32B. Chat with conversation memory, voice input, and OpenAI-compatible API.

💬

Conversation Memory

Your chats are saved and the AI remembers context across messages.

🎤

Voice Input

Speak your messages with Whisper-powered transcription in any language.

OpenAI Compatible

Use our API with any OpenAI-compatible client or curl commands.

🚀 Quick Start with cURL

# 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!"}]}'