Customer ops AI: Urdu chatbots, voice IVR, and the escalation path
کسٹمر آپریشنز AI: اردو چیٹ بوٹ، وائس IVR اور ایسکیلیشن کا راستہ
34 min read
Three ways to see it
Customer ops in a Pakistani digital bank breaks into three channels: chat (in-app and WhatsApp), voice (IVR and helpline), and email. Volume sits 70% in chat, 20% in voice, 10% in email, but voice carries the highest emotional stakes because customers call when something is on fire. AI is now usable across all three channels for Pakistani Urdu thanks to multilingual large language models with reliable Urdu generation, plus speech-to-text models that handle code-switched Urdu-English at acceptable accuracy.
A modern customer-ops AI stack has five layers. Layer one: intent classification, mapping the customer's first message to one of perhaps eighty intents (card declined, balance enquiry, dispute, address change). Layer two: identity confirmation, where the bot verifies the caller via Raast PIN, OTP, or knowledge questions. Layer three: action execution, where the bot reads or writes the core banking system through scoped APIs (block card, raise dispute, send statement). Layer four: response generation, in clear Urdu or English at the customer's level. Layer five: escalation routing, deciding when to hand to a human and how to brief them.
Three design rules separate good Urdu bots from bad ones. Rule one: speak the customer's register, not the bank's. 'آپ کا اکاؤنٹ ڈیبٹ ہو گیا ہے' is bank Urdu; 'آپ کے اکاؤنٹ سے پیسے نکل گئے ہیں' is human Urdu. Rule two: confirm before acting. The bot should always say what it understood and what it is about to do, in one sentence, and wait one second for objection. Rule three: never lie about being an AI. If the caller asks 'are you a human?', the answer is always 'I am an AI assistant; if you would like a human, say agent now'. The trust cost of a deceptive bot is years.
Quick check
Quick check: what makes modern AI different from a rule-based program?
The why-tree
Why-tree level one: why does Urdu deserve a separate design pass when the LLM speaks both languages? Because the politeness register, honorifics, and idiomatic expressions in Urdu carry information that an English-trained UX designer will miss. A bot that uses 'تم' instead of 'آپ' is rude in a way no English bot ever is.
Try this with Claude
AI-edge prompt: 'I run customer ops at a Pakistani digital bank serving 800,000 active accounts. Design my Urdu voice bot persona, the first 60 seconds of script for the top three intents (card declined, suspicious transaction, balance), the escalation rules, and the metrics I should publish to my CEO weekly.' Then ask the model to role-play an angry customer and stress-test your script live. Write down where it broke; that is your sprint backlog.
Sources
Sources and further reading. Anthropic and OpenAI documentation on multilingual model evaluation. Mozilla Common Voice Urdu dataset notes. CSTR Edinburgh and Punjab University speech research on Urdu STT. Karandaaz Pakistan customer experience studies in low-literacy segments. SBP Consumer Grievance Handling Mechanism guidelines. CGAP Customer Outcomes-based Approach to Conduct Supervision. Books: Designing Voice User Interfaces by Cathy Pearl; Conversational Design by Erika Hall.