New Orleans is putting AI on 911 calls to handle surge backlogs New Orleans is deploying an AI agent on 911 calls to triage emergencies and reduce backlogs, with the system listening to callers, extracting core emergencies, and flagging priority levels for human dispatchers. The AI, likely using speech-to-text and a small language model for low latency, categorizes calls into priority levels (e.g., 'unconscious' as Priority 1, 'noise complaint' as Priority 3) to route urgent cases immediately. The initiative aims to address the problem of people being left on hold during disasters, though it faces challenges in building trust and validation for emergency services. New Orleans is putting AI on 911 calls to handle surge backlogs This is a high-stakes application of an LLM agent where the cost of a "hallucination" isn't just a wrong answer—it's potentially a lost life. For this to work in a real-world deployment, the AI workflow has to be incredibly lean. It isn't replacing the human dispatcher; it's acting as a sophisticated filter. The system listens to the caller, extracts the core emergency, and flags the priority level for the human operator who is currently overwhelmed. If we look at this from a prompt engineering perspective, the challenge is likely around "intent classification" under extreme stress. People calling 911 aren't speaking in clear, structured sentences; they are screaming, crying, or speaking in fragments. The AI needs to be tuned to recognize urgency through sentiment and keywords without getting tripped up by the chaos of the audio. Implementing this requires a very specific technical stack to ensure low latency. You can't have a 3-second lag while a cloud API processes a request when seconds matter. They are likely using a combination of speech-to-text STT and a highly optimized small language model SLM to keep the processing local or on a dedicated edge server. For anyone looking to build a similar triage system, a basic logic flow for the AI agent /en/tags/ai%20agent/ would look something like this: { "triage logic": { "priority 1": "unconscious", "not breathing", "active shooter", "chest pain" , "priority 2": "car accident no injuries", "water leak", "broken window" , "priority 3": "parking dispute", "noise complaint", "lost pet" , "action": "Route Priority 1 to immediate human dispatcher; queue Priority 3 for delayed response." } } The biggest hurdle here isn't the code, but the trust. Moving from a human-only system to an AI-assisted one in emergency services requires a massive amount of validation. However, the alternative—leaving people on hold during a disaster—is far worse. This is a great example of how AI can move beyond chatbots and productivity tools into critical infrastructure. Can we actually trust an LLM agent to handle 911 calls in New 4d ago /en/news/5395/ AI Emergency Response: New Orleans' Shift to Automated 911 4d ago /en/news/5368/ Next Alchemize helps you stop drowning in massive AI-generated PRs → /en/news/5917/ an AI side-hustle playbook https://tanyan888.com/ , with plenty of directly applicable cases. All Replies (0) No replies yet — be the first