Voice-Enabled Transaction Agent Endpoint & Interactive Sandbox
Speak naturally or type a financial transaction sentence to test STT, NLU entity extraction, and Firestore CRUD payload generation.
// JSON output will be rendered here
Use the endpoints below to connect your mobile application or backend to this hosted Voice Agent service:
/api/voice/process-text
Process natural language text utterance or multi-turn conversational session
/api/voice/process-audio
Upload recorded audio file (.wav/.m4a/.mp3) or base64 audio stream for STT + NLU
/api/voice/parse
Model A Parse-Only endpoint (returns JSON schema without DB write)
curl -X POST https://your-hosted-domain.com/api/voice/process-text \
-H "Content-Type: application/json" \
-d '{"text": "Spent 500 rupees on groceries today", "model": "A"}'