How We Built a Voicemail Detection Model that Outperforms the Industry

Last week at our customer conference, Regal Rise we announced Regal's new Voicemail Detection model and the headline results: ~45% fewer voicemails routed to agents on outbound calls, 96% screener recall, and no tradeoff on human recall. This post is the technical follow-up: a look at the methodology behind the model and the decisions that shaped it.

Most AMD solutions on the market have two problems that result in their lower accuracy and usefulness:

1. They treat the answer space as binary: human or machine. But the real world isn't binary. Google and iOS call screeners are automated, but there can be a live person behind them. IVRs can be navigated to eventually get to a live person. Collapsing these into a single "machine" label limits your routing and handling options.

2. They rely on acoustic heuristics: detecting silence patterns, listening for a beep, measuring pause length after the greeting. Those signals can work on simple carrier voicemail, but they break down on personal greetings that sound like live speech, on call screeners that introduce a delay before a human picks up, and on any audio that doesn't fit the templates the heuristic was built around.

We started from scratch: a speech-encoder-based model trained on real call audio from 163k outbound calls, with a richer taxonomy, a principled labeling pipeline, and a decision framework built around the asymmetric costs of each type of error, for example, it's more costly to hang up on a human than it is to let a voicemail through to an agent.

This post walks through our technical approach.

Why "human or machine" isn't enough

Most AMD systems frame the problem as a binary classification: human or machine. That framing is too coarse for the range of call behaviors encountered in production.

A Google or iOS call screener is automated speech, but some percentage of time, there’s a real person behind it. Treating that as an ordinary voicemail discards a potentially valuable connection. A personal voicemail greeting can sound nearly identical to live speech (remember your high school voicemail message: Hello?…hello? Just kidding, please leave a voicemail). A carrier-generated greeting has very different acoustic properties. Collapsing all of these into a single "machine" label makes the problem look simpler than it is and limits what you can optimize.

We trained the system on a richer internal taxonomy:

The classifier produces a probability estimate for every class. A separate policy layer then maps those estimates to a routing action, and that mapping is fully configurable per brand and campaign. For a live human pickup, the AI agent is connected and the conversation begins. For voicemail, the system can leave a message or end the call, depending on campaign configuration. For call screeners, customers can also choose their routing policy based on data. 

A high-intent campaign, like outbound calls for a healthcare follow up, may find that a large share of screener interactions result in a live conversation; routing every screener to an agent makes sense. A lower-intent re-engagement campaign for lapsed insurance customers may find that very few screener interactions convert; in that case, treating screeners as voicemail protects agent minutes. Because the model and the policy are separate, customers can tune this without retraining.

How we built it: from audio to routing decision

1. Start with the audio the model will actually hear

We collected contact-side audio from real outbound calls and focused on the first two seconds after the answer. That budget is a product constraint: more time provides better model signal, if you wait too long to route, then the person who picked up will hang up.

Two properties of that clip have to be right. The first is alignment, which matters more than it might seem. At a two-second budget, a few hundred milliseconds of offset is not a rounding error: it can push the greeting's first syllable out of the clip, leaving the model to score mostly silence on a call a human would classify instantly. Training and inference audio must be aligned to the same starting point and normalized the same way otherwise offline accuracy measures a slightly different problem than the one running in production. We verified that predictions agreed across both paths before trusting any offline result. 

The second property is format. Telephony audio arrives at 8 kHz as mulaw-encoded audio, while the speech encoder we selected expects 16 kHz PCM, so every clip is decoded and converted to mono 16 kHz before it reaches the model, in training and in production alike.

Here is an example standard carrier voicemail input:  

“Your call has been forwarded to voicemail. The person you're trying to reach is not available. At the tone, please record your message. When you have finished recording, you may hang up. [BEEP]”

2. Let the representation inform the taxonomy

Before training a classifier, we passed sample clips through pretrained speech encoders and inspected the resulting embeddings. We projected those high-dimensional representations into two dimensions using UMAP and inspected density-based clusters to answer two questions: Which candidate labels form coherent acoustic regions? And which labels overlap so heavily that adding more examples won't solve the problem?

Illustrative representation analysis. The starred walkthrough clip is placed in the carrier-voicemail region because of its confirmed carrier greeting; its exact coordinates here are simulated.

The analysis was instructive. Carrier-generated voicemail and some screeners formed recognizable regions. Live speech and personal voicemail greetings overlapped significantly. The broad "other screener or IVR" bucket was less coherent than the named screener classes. These findings shaped the taxonomy, manual-review priorities, and the decision to preserve uncertainty rather than forcing every ambiguous clip into a confident label.

3. Scale labels with an LLM judge, then audit the hard cases with people

Manually reviewing nearly 200,000 recordings would have been slow and expensive. Many of their transcripts, however, contained clear linguistic signals, carrier greetings, named call-screening prompts, and live conversational exchanges, that could be labeled automatically

We first created a human-labeled evaluation set, stratified across our taxonomy, and used it to measure the LLM judge’s agreement with human reviewers. The labeling rubric was deliberately conservative: the judge assigned a class only when the transcript contained sufficient evidence; otherwise, it returned unknown. 

We iterated by examining disagreements between the judge and the human labels, refining the rubric, and rerunning the same evaluation set. Once the results were stable, we compared several LLMs on both label agreement and cost at scale.

We then applied the selected judge to approximately 196,000 transcript-backed calls, our results are below:

Random human audits confirmed that language-distinct classes, such as named screeners and common voicemail patterns were suitable for automated labeling. Incomplete transcripts, silence, dead air, and short ambiguous fragments were not. Those unknowns, disagreements, and boundary cases were sent to our team for manual audio review.

This created a practical division of labor:

  • Automation for scale: assign high-confidence candidate labels to common patterns
  • Humans for ambiguity: review unknowns, short fragments, disagreements, and rare classes
  • Human labels for final claims: measure production performance on audio labeled independently of either system's verdict

This approach concentrated human effort where product context and careful listening mattered most, while allowing us to prepare the broader training corpus efficiently and consistently.   

Internal Regal Human Labeler Interface
4. Seal the test set before model selection

Before the model evaluation, we set aside a stratified holdout representing ~15% of the usable labeled corpus, with class proportions preserved so minority classes remained visible. We used stratified cross-validation inside the remaining training data for iteration, then returned to the sealed holdout for model comparison. Threshold sweeps create many opportunities to overfit a test set indirectly: training metrics, threshold-selection data, and live-audio validation answer different questions and shouldn't be collapsed into one score.

5. Choose the encoder before optimizing the classifier head

We tested multiple open speech encoders, including W2V-BERT, WavLM-Base-Plus*, and XLS-R. The largest performance improvement came from the encoder, not the classifier head. WavLM was the best fit for our accuracy-and-latency tradeoff: it was designed to preserve spoken content while remaining robust to speaker, channel, and background-noise variation.

We use WavLM as a frozen feature extractor rather than an end-to-end fine-tuned network. The pretrained encoder converts a short waveform into frame-level representations; Regal trains only the compact downstream aggregation and classification layers. Partial or full encoder fine-tuning remains a future experiment.

6. Pool frame sequences without discarding their variation

The audio encoder returns a sequence of vectors (one every 20 ms) rather than a single fixed-size array. A simple baseline averages the frames, but two clips with the same average and very different variation over time can look identical to such a model.

To address this, we compress the time axis within each selected WavLM layer using masked mean-and-standard-deviation pooling, then train a supervised scalar-mixing layer to learn how much each encoder layer should contribute. The mixer is optimized jointly with a temporary linear probe; the learned layer weights are retained for inference.

7. Keep the decision head deliberately lightweight

On top of the pooled WavLM representation, we compared a regularized linear head with random forests, gradient-boosted trees (LightGBM, XGBoost), and feedforward neural networks. More flexible models can fit nonlinear boundaries, but that flexibility wasn't overwhelmingly useful in practice. Several alternatives improved individual offline slices while adding overfitting risk and operational complexity.

The final system retains the lightweight linear head. The encoder and pooling stages already make much of the problem separable; the head adds negligible latency and is straightforward to package and serve. Human recall is controlled at the policy layer through the decision threshold, not through class weighting in the loss.

8. Find right threshold for your needs

The classifier emits a probability estimate for each class. For each candidate model, we swept the human threshold and measured human recall, precision, false-connection rate, and accuracy. The decision rule is intentionally asymmetric:

  • Preserve the call when the human score clears the chosen risk threshold
  • Preserve supported screener outcomes when a screener is the strongest class
  • Otherwise treat the call as an answering machine

That threshold can be adjusted by business context. A campaign selling a high-value product or service, where each live conversation is worth more, may accept more voicemail leakage to protect every possible human connection. A campaign with a lower-value offer may choose a stricter operating point, prioritizing agent minutes efficiency over capturing every marginal call.

9. Validate on live audio before granting routing authority

Offline test data can't reproduce every carrier, codec, microphone, background, and timing pattern seen in production. We ran the new Regal model in parallel with our incumbent AMD solution (which leverages Twilio AMD + keyword identification from Deepgram realtime transcription to disambiguate “unknown” responses from Twilio AMD) on live calls before using it as the routing authority.

The validation used the same waveform seen by production inference. Both systems' proposed outcomes were retained, and uniform samples were drawn from live traffic for manual review. Reviewers labeled audio without seeing the model-comparison stratum. We reported confidence intervals and inspected results by class and campaign rather than trusting a single aggregate.

Production Pipeline: An End to End Example  

Training a model is one thing, but the production pipeline you build is just as critical in order to go from audio input to output decision in 2 seconds. Lets again consider our carrier voicemail example from the beginning of this post and how it runs through our production system.

1. Collect a short contact-audio window. Live μ-law telephony frames are accumulated in sequence. When configured, a silence-aware path can wait for enough voiced audio before making a final decision.

2. Normalize the waveform. Decode the telephony signal and resample it from 8 kHz to the 16 kHz input expected by WavLM.

3. Extract frame representations. Frozen WavLM layers turn the waveform into a sequence of high-dimensional vectors.

4. Pool the sequence. Learned layer weights pooling combine those summaries into one vector.

5. Estimate all classes. After inputting the embedding in the lightweight multiclass head, return probabilities for live speech, voicemail variants, and screeners.

6. Apply business policy. Human and screener rules map probabilities to the final agent-versus-system decision.

What the human-labeled production comparison showed

At the documented operating point, we compared our Regal Voicemail Detection Model against the incumbent on a human-labeled sample of live calls:

At the same 96% human recall, Regal's voicemail leakage rate was 6.1%, compared with 11.0% for the incumbent stack, a 44.7% relative reduction, or roughly 45% fewer machine connections without sacrificing a single human connection in this sample.

The screener result is the other notable figure. Regal correctly identified 96.4% of call screeners; the incumbent caught 43.1%. Those missed screeners represent calls where there may have been a real person reachable behind the automated prompt, and the incumbent stack was dropping them.

The important result is the shape of the tradeoff: the selected Regal operating point moves voicemail leakage down while holding human recall at the incumbent level, with a model that can be tuned further toward human recall if business needs require it.

What's next

Every model has a lifecycle. Voicemail greetings, call-screening products, lead sources, and carrier behavior change over time. We've built the feedback loop as a first-class part of the system:

  • Monitor runtime latency, errors, and class-probability distributions by model version
  • Draw recurring human-labeled samples, including new brands and campaigns, to detect silent quality drift
  • Track class-level confusion or break out new classes, especially the heterogeneous other IVR/screneer bucket
  • Retrain the lightweight head when labeled production data reveals stable new patterns
  • Continue controlled experiments with temporal pooling, CNNs, recurrent models, transformer heads, and partial or full encoder fine-tuning

The central lesson from this project: better Voicemail Detection didn't come from a single clever classifier. It came from aligning the taxonomy with the actual audio, scaling labels without trusting automation blindly, choosing representations before adding model complexity, and treating the decision threshold as an explicit business choice.

_______________________________________________________________________________

*WavLM-Base-Plus by Microsoft (Chen et al., arXiv:2110.13900, 2021), licensed under CC BY-SA 3.0. License: https://github.com/microsoft/UniSpeech/blob/main/LICENSE. Model: https://huggingface.co/microsoft/wavlm-base-plus.

Frequently Asked Questions

Founded in 2020, Regal is an enterprise voice AI agent platform for contact centers. Regal helps businesses build, deploy, and manage autonomous AI agents across sales, support, and operations teams.

Latest Blog Posts

SEPTEMBER 2023 RELEASES

September 2023 Releases

Read More
SEPTEMBER 2023 RELEASES

September 2023 Releases

Read More
SEPTEMBER 2023 RELEASES

September 2023 Releases

Read More
Introducing Regal’s Voicemail Detection Model: How We Reduced Voicemails Routed to Agents by 45%

With Regal’s next-generation Voicemail Detection model, you can now classify voicemail, iOS or Google call screeners as separate categories with very high accuracy. This enables screener-specific handling, ultimately reducing missed agent connections.

Read More
AI Agent Templates: More Industries, More Detailed Prompts, and Custom Actions

Building a voice AI agent from scratch means writing prompts, wiring up actions, and defining guardrails before you can even test a call. Our upgraded agent templates skip that setup.

Read More
September 2026 Product Recap

Last month, we shipped releases that make it easier to build, monitor, and test agents in one interface. Copilot Canvas brings building, editing, and testing into one interface and it can work straight from your files. Multi-state sticky notes let your team document decisions directly on a live agent.

Read More
Announcing Copilot: Continuous Agent Improvement

Regal is announcing Copilot, our agent for building AI agents. Create, test, deploy, monitor, and improve your Regal AI agents faster than ever by managing an agent instead of going through each step yourself.

Read More
Single vs Multi-State: How to Pick the Right AI Agent for the Job

Learn about the difference between single-state and multi-state AI agents, and how each impacts speed, scale, and reliability. Discover when simplicity is enough and when enterprise workflows demand structured orchestration, so you can choose the right design for your use case.

Read More
Give Copilot More Context With File Uploads

Copilot now lets your team upload files, like spreadsheets, scripts, and flowcharts, directly as inputs. This gives Copilot the context it needs from the start, making it easier to extend Copilot into new agent use cases as they come up.

Read More
How Regal AI Agents Navigate Complex IVRs

How Regal AI Agents recognize, navigate, and continuously improve at getting through third-party IVR phone trees, from classification and the Press Digit action to node isolation and real-world test simulations.

Read More
Build, Test, and Monitor Agents on One Interface with Copilot Canvas

Copilot Canvas brings agent building, testing, and monitoring into one interface, so you can edit, test, and track performance without leaving Copilot chat.

Read More
Dialing Compliance: How We Scaled Outbound Calling Reliably

Behind a fragmented and ever-changing regulatory landscape is a simple goal: protecting people from unwanted or poorly timed outreach and giving them control over how they’re contacted. In practice, that responsibility translates into a set of checks that must be validated.

Read More
5 Outbound Call Center Strategies to Connect with Customers

Learn five game-changing outbound call center strategies that’ll help you reach the right people, at the right time, with the right message.

Read More
Outbound Abandon Rate: Why It Matters & 5 Strategies Master It

Explore 5 actionable strategies to keep your outbound abandon rate low, optimize your dialer efficiency, and maintain customer trust.

Read More
Outbound Call Center: What It Is, How It Works & Best Practices

The fastest growing High Consideration brands have invested heavily in outbound call centers for sales and marketing. With the right technology, staffing and measurement, you too can build a high performing outbound call center to help hit your growth goals.

Read More
Regal and Five9 partner to bring Voice AI Agents highly-regulated contact centers

As a certified solution on the Five9 CX Marketplace, Regal integrates directly with Five9's enterprise CCaaS platform and infrastructure.

Read More
August 2026 Product Recap

Last month, we launched features that extend your management of AI agents via MCP and CCaaS platforms. Debug based on agent versions or simulation runs, and manage AI analysis data points via Copilot and Regal MCP. As a Five9 AI Agent Connect partner, Regal now has a dedicated integration API built for Voice AI agents.

Read More
Real-Time Observability Across Every AI Agent

The Regal Observability Dashboard gives your team real-time visibility into AI agent performance — tracking hallucination rates, guardrail breaches, latency spikes, and more across every call, automatically.

Read More
8 Healthcare AI Agent Use Cases for Better Patient Outcomes

Discover how healthcare AI Agents are transforming patient engagement from intake to billing. See 8 powerful use cases driving higher adherence, faster scheduling, and better outcomes.

Read More
The Benefits of AI in Insurance: How AI Agents Are Reshaping the Industry

Discover the game-changing benefits of AI in insurance. Learn how AI Agents improve customer experience, reduce costs, and boost efficiency in claims processing, underwriting, and customer interactions.

Read More
7 Best Use Cases for AI Voice Agents in Your Contact Center

As AI technology continues to evolve, the use cases for AI Voice Agents in contact centers will only increase. By answering these six key questions, you can identify where AI agents fit best today in your contact center and plan for future integrations.

Read More
Why We Signed the Open Weights Letter

We've always been careful to never give frontier labs the right to keep or train on customer data. With open weight models, we can go further: when a customer invests in improving these models, that value accrues to them, not to a lab.

Read More
How SoFi, Perry Health & Allstate Personalize CX at Scale

Discover how Regal.io's AI-powered personalized outreach solutions are revolutionizing outbound sales and customer experience across industries like healthcare, finance, and insurance in our latest eBook, "Modernizing Outbound Contact Centers: How to Treat Millions of Customers like One in a Million."

Read More
July 2026 Product Recap

Last month, we shipped updates that make AI agents sound more responsive and easier to run at scale. Dynamic Voices lets your agent adjust its pace the second a contact asks for it, and Copilot now handles IVR and disposition management.

Read More
How Regal Reduced AI Agent Latency by 26%

We reduced end-to-end voice AI response latency by 26% in three weeks by optimizing prompt structure for LLM caching: moving dynamic contact data out of the cacheable prefix so the model stops reprocessing instructions on every call.

Read More
GPT-Live and the Rise of the Full-Duplex Voice Agent

OpenAI launched GPT-Live, a new generation of voice models, and described it as a “full-duplex” model. We tested GPT-Live directly to see how the theory holds up in practice.

Read More
Why Your Appointment Scheduling Is Still Broken (And What AI Agents Actually Fix)

With AI agents, every appointment gets a confirmation call. Each contact gets a chance to reschedule, and the confirmation rate goes to 100%, not because the AI is better at conversations than your agents, but because the AI never runs out of capacity.

Read More
How American Standard Helps Homeowners Start Remodeling Projects with Ease

American Standard’s AI agents streamlined the home remodeling journey by responding instantly to every homeowner inquiry, capturing demand in real time, and creating a faster, more seamless path from interest to installation.

Read More
The Voice AI Agent Triangle: Speed, Control, Expression (Pick Two)

Every production Voice AI agent is a tradeoff system. Successful Voice AI agents are deliberately constrained, and those constraints can be visualized in The Voice AI Agent Triangle.

Read More
Extend what your team can build, see, and improve with Regal MCP

Regal MCP connects your Regal platform to AI environments like Claude, Cursor, and ChatGPT. Your team can pull transcripts, inspect configurations, and trigger actions without switching context.

Read More
Contact Center Automation Trends 2026 | AI, Voice & Omnichannel Guide

The 8 contact center automation trends defining 2026—from AI voice agents to event-driven journeys. Data from 350M+ calls on Regal's platform. Read the report.

Read More
Answering Machine Detection (AMD): How It Works & Best Practices

Regal's advanced AMD algorithm uses multiple factors to determine if a human answers your call. Learn more about the different techniques available.

Read More
May 2026 Releases

This month, we shipped Regal MCP, which extends what your team can build, see, and improve. Regal MCP opens the platform to your external AI environment, so team members can take Regal actions directly from tools like Claude without switching context.

Read More
April 2026 Releases

This month, we shipped enhancements that help you quickly make proactive fixes and customize AI agents to your brand. Copilot does more troubleshooting work on your behalf and with headless WebRTC, you can embed Regal voice agents inside your own product UI.

Read More
We Just Hit 500M Calls. Here's What We Learned.

This number is a milestone that represents a fundamental shift in customer experience and how businesses grow. Curious what this number really looks like? We put it into perspective.

Read More
Call Center Metrics & KPIs: 10 Essential Ones for 2026

Discover the 10 most essential call center metrics and KPIs for 2026. Learn how to measure and optimize your call center's performance with our comprehensive guide.

Read More
How Gemini 3.5 Flash performs for Voice AI agents

Every new LLM comes with trade-offs between latency, cost, and quality — and Regal tests all of them against real voice AI agents. Here's what we found when we ran Gemini 3.5 Flash through our benchmark.

Read More
Why Customers Confide in Voice AI Agents More Than Your Reps

At HumanX 2026, Regal's VP of Growth Lex Sivakumar shared what 400 million analyzed calls reveal about voice AI. Customers are not just accepting well-built AI voice agents. They are opening up to them more than they do to humans.

Read More
From Kickoff to First Live Call: What a Real Voice AI Deployment Looks Like

After powering over 400 million calls, we've found that the contact centers that win with voice AI aren't just the ones that deploy first. They're the ones that learn fastest.

Read More
No Need to "Press 1": How AI Phone Agents Go Beyond Automation

AI phone agents aren't just better phone trees. They are autonomous systems that can understand caller intent, retrieve relevant information from your CRM in real time, execute actions, handle objections and clarifications, and complete the conversation without human involvement.

Read More
Why Your AI Voice Agent Sounds Robotic And How to Measure for Improvement

Voice AI is architectural, not cosmetic. Warm words on a broken flow make things worse. But warm words on a well-structured, well-measured system compound over time.

Read More
The PII Question Every Regulated Industry Asks Before Deploying AI Agents

When prospects in healthcare and financial services hear "PII," they often imagine bulk data transfer: the idea that deploying an AI agent means copying a database somewhere. In most modern deployments, that's not what's happening.

Read More
March 2026 Releases

In March, we made it faster than ever to build, launch, and continuously improve AI agents with Copilot, Regal's AI agent for building AI agents. Together, these updates lessen the time needed to launch and maintain agents, so you can focus on understanding your customers, unlocking new use cases, and driving faster business outcomes.

Read More
The Knowledge Gap: Why Your AI Agent Can’t Answer Real Customer Questions

AI agent performance depends on how well it aligns with real customer language, not just fluency. Regal Improve helps teams identify gaps and improve outcomes by analyzing real conversations and surfacing high-impact opportunities

Read More
How to Improve Agent Productivity with AI | Regal

7 proven ways AI agents improve contact center productivity. Regal customers report faster handle times, higher FCR, and 40% cost reduction. See how it works.

Read More
Why “Sounding Nice” Fails: Engineering Empathy in AI Agents

How to build an AI agent that balances empathy with control, and drives real results in production.

Read More
Support Customers Directly on Your Website with Chat AI

Now, you can embed Chat AI directly into your site, providing customers with dynamic, contextual responses that move them toward a decision.

Read More
From Bottleneck to Breakthrough: Creating Delightful Experiences with Voice AI Agents

At the AI Summit New York, Regal Director of Product & Product Marketing, Yael Goldstein shared how enterprise organizations are moving beyond theory to deploy Voice AI agents that transform customer experiences.

Read More
Introducing WebRTC Voice: Click to Talk, Right From Your Website

WebRTC Voice enables real-time voice conversations: instead of dialing phone numbers or switching applications, customers can enable voice conversations directly in your website widget.

Read More
How Kin Insurance & a360inc Achieved Faster Outreach and Better Customer Experiences with AI Agents

In this fireside chat, Regal Co-Founder & CEO Alex Levin sits down with Kin Insurance’s Austin Ewell and a360inc’s Henry Davidson to share how their organizations are using AI agents to transform outreach, customer experience, and operational efficiency. They discuss real-world deployments—from qualification and human agent handoffs to complex negotiation workflows—break down the results, and offer practical guidance for leaders adopting AI agents at scale.

Read More
How a360inc automated notary outreach and negotiation

See how a360inc automated notary outreach and negotiation with Regal’s AI Agent, cutting costs by 80%, saving money on bid collection, and boosting coverage with unlimited outreach, structured negotiations, and reliable data capture.

Read More
The Evolution of AI Agents: From Chatbots to Multi-State

Trace the evolution of AI agents, from scripted chatbots to IVR systems to single-state GenAI, and now to multi-state agents that unlock true end-to-end orchestration at scale.

Read More
From Pilot to Scale: How to Test AI Voice Agents in Regal

See how to test AI Voice Agents in Regal with simulation-based suites, manual checks, and end-to-end validations. Ensure logic, voice, and telephony all perform reliably so every deployment scales with confidence.

Read More
Automatically Evaluate Test Suites with Simulations

Discover how you can use Simulations to evaluate scenario-specific conversational flows that pinpoint AI Agent failures before launch. Speed up regression testing, validate prompts, knowledge bases, and custom actions at scale, and deploy reliable AI Agents with confidence.

Read More
Apple iOS 26 Caller Screening: An Enterprise Guide

Apple’s iOS 26 introduces new call-screening controls that will reshape outbound performance. This guide explains what’s changing, how adoption may impact enterprise contact centers, and the proactive steps leaders can take now to protect answer rates and customer trust.

Read More
RAG Hygiene: How to Scale and Maintain AI Agent Knowledge

Learn how to maintain a clean, reliable RAG system for AI Agents. Discover best practices for structuring source docs, chunking content, titling for retrieval, avoiding redundancy, and keeping knowledge bases fresh to ensure accurate, scalable performance.

Read More
Introducing Custom AI Analysis: Extract Data from Every Conversation

Regal’s Custom AI Analysis transforms post-call transcripts into actionable, structured data points, so you can personalize follow-ups, analyze trends in-aggregate, and scale improvements across every interaction.

Read More
Inside Regal’s H2 Roadmap Reveal: The Future of AI Agents

If you missed our H2 Roadmap Reveal, here are the biggest takeaways, including real customer wins and a preview of what’s coming in the second half of the year.

Read More
Context Engineering for AI Agents: When to Use RAG vs. Prompt

Master context engineering by choosing the right method for AI agent knowledge—prompts for behavioral control, RAG for long-form, unstructured data, and custom actions for precise lookups.

Read More
Building AI Voice Agent-Ready APIs: Lessons from the Front Lines

Lessons from the frontlines on how to build AI Voice Agent-ready APIs.

Read More
Anatomy of an AI Voice: What Makes It Sound Human

This article outlines the core characteristics that influence how voice AI is perceived on live calls. From mechanical traits like speed and volume, to more emotional and conversational behaviors, we’re going to look at what those characteristics mean, why they matter, and how they impact your bottom line.

Read More
Voice AI Customization 101: Settings That Work Best

Learn how to configure your AI Voice Agent for real performance. This guide covers the most important voice settings in Regal, what ranges top brands use in production, and how adjusting speed, tone, and responsiveness impact cost, containment, and overall customer experience.

Read More
Introducing Progressive Dial for AI Voice Agents

Discover how you can now staff Regal’s progressive dialer with AI Voice Agents—to run high-volume outbound campaigns with smarter pacing, instant call connection, and voicemail detection—boosting efficiency and eliminating abandoned calls.

Read More
How to Use SIP Headers in Regal to Route and Personalize AI Voice Calls

Learn how to use SIP headers with Regal AI Voice Agents to personalize routing, enrich transfers, and integrate with your existing telephony stack—no backend changes required.

Read More
Build AI Agents Without Code, Directly From Regal’s Platform

Discover how Regal's AI Agent Builder lets enterprises create and deploy custom Voice AI Agents without code, integrate with existing systems, and scale workflows to deliver human-like customer interactions at scale.

Read More
How AI Appointment Setter Technology is Redefining CX at Scale

Discover how AI appointment setter technology is being adopted by enterprises in industries like healthcare, insurance, and education as a strategic advantage for scaling operations and improving customer satisfaction.

Read More
How to Best Combine Voice and SMS AI for Omnichannel Support

The best customer experiences are seamlessly omnichannel. In this guide, see how Regal enables seamless, AI powered omnichannel support across voice and SMS.

Read More
Staying Compliant with the New TCPA Rules: A Guide for Enterprise Contact Centers

New TCPA updates require interpreting opt-out intent and suppressing outreach across all channels. See how you can use Regal's AI Decision Node to stay compliant.

Read More
Debunking AI Agent Fears: "Will humans get frustrated talking to AI?”

Learn how to design AI phone agents that prevent frustration, earn trust, and actually help customers—by getting the voice, logic, and data right from the start.

Read More
Debunking AI Agent Fears: "Will the AI lack empathy?"

With the right design and controls, AI agents can be built to deliver empathetic, human-like interactions for all of your routine contact center interactions.

Read More
Debunking AI Agent Fears: “What if the AI crashes mid-conversation?”

You're not crazy for worrying about AI crashing out of the blue. Here, see why you shouldn't concern yourself over that happening.

Read More
AI Agents vs. Answering Services: 13 Essential Questions Answered by Contact Center Experts

Discover how AI Agents vs. Answering Services stack up and why modern businesses are replacing outdated systems with emotionally intelligent, revenue-driving AI voice agents.

Read More
What is the true cost of AI Voice Agents?

Wondering about the true cost of AI Agents? Discover how Regal’s AI Agents compare to human labor and why the cost of implementing AI Agents delivers scalable, predictable ROI.

Read More
What Makes Regal AI Agents So Good?

See why leading companies trust Regal’s AI Agents for better conversations, real outcomes, and HIPAA-compliant customer experiences.

Read More
Introducing the AI Decision Node: Smarter AI Workflow Automation for Contact Routing

Introducing Regal's AI Decision Node—a new way to auto-route contacts in journeys based on the context of each customer interaction.

Read More
Debunking AI Agent Fears: "What if my AI Agent takes too long to respond?"

Worrying that an AI agent will take too long to respond is not a valid reason not to adopt AI. Here, we'll show you why.

Read More
AI Collections: How Top Lenders Automate Growth in 2025

Automate follow-ups, reduce delinquencies, and boost ROI with AI Collections. Discover how Regal’s AI Agents are changing the future of loan servicing.

Read More
AI-Based Workflow Automation: How to Personalize and Scale Customer Journeys

Discover how AI-based workflow automation and customer journey automation can streamline operations, personalize customer interactions, and boost revenue.

Read More
How to Deliver a Unified Customer Experience with Regal in 2025

The more lines of communication you open with your customers, the more likely you’re starting the conversation on the right foot. Regal helps you unlock a more unified customer experience in a matter of days. See how.

Read More
Maximize Agent Throughput with Regal's Predictive Dialer

It’s critical for call center managers to understand how their power dialers work and to measure if they’re performing as intended. With Regal’s new Predictive Dialer, You can do just that, and much more.

Read More
8 AI Agent Use Cases for Home Service Companies

Explore 8 powerful AI Agent use cases for home service companies that drive speed, increase capacity, and create predictable, high-converting customer workflows.

Read More
6 Strategies to Optimize Phone Number Inventory Management

Discover effective strategies for phone number inventory management and learn how to maintain a stellar phone number reputation. Explore best practices, expert insights, and innovative solutions to optimize your communication operations.

Read More
Your Policyholders Hate You... File That Under "Totally Preventable Losses"

Not everyone gets excited about buying insurance. Learn how AI Agents improve the experience for policyholders, bring down your cost to serve, improve your response times, and help you get rid of the hold music for good.

Read More
AI Agents for Education: 8 Use Cases for More Meaningful Student Outcomes

AI Agents for Education are transforming student engagement—boosting enrollment, improving retention, and making support more human. Discover 8 game-changing use cases that free up your staff while delivering better student outcomes.

Read More
Click Your Heels, Ditch the Guesswork: Start Winning with A/B Testing

Many contact center leaders still wander through customer journeys as if they're in the Land of Oz. Dive in to see why and how A/B testing is your shortcut to unlocking provably, repeatably, and scalably better CX.

Read More
Regal Named One of Forbes America’s Best Startup Employers 2025!

Regal is officially one of Forbes America’s Best Startup Employers 2025, ranking #164 out of 500. This recognition is a testament to our incredible team, our innovative work culture, and our unwavering commitment to advancing AI technology.

Read More
AI in Education: The Future of Student Engagement & Enrollment

AI in education is helping to streamline admissions, automate student engagement, and enhance higher ed outreach. Discover key education technology trends to boost enrollment and learn why automated student engagement tools are the future.

Read More
Measuring AI Agent Success: Key KPIs for AI Agents in Your Contact Center

Discover key KPIs for measuring AI agent success in your contact center. Learn how to track performance, improve efficiency, and optimize AI-driven conversations for better business outcomes.

Read More
How to Build AI Agents for Beginners: A Step-by-Step Guide

Learn how to build AI agents for beginners with this step-by-step guide. Discover key skills, tools, and no-code AI agent builders to get started today!

Read More
How are Generative AI Voice Agents Different from AI Voice Assistants?

When it comes to comparing AI Agents vs. AI Assistants, Siri & Alexa handle simple tasks, but Gen AI Voice Agents—like Regal’s AI Phone Agent—drive real business impact with human-like conversations, automation, and seamless integration.

Read More
Regal’s Q1 Product Roadmap: Webinar Highlights & Recap

Regal’s Q1 2025 product roadmap brings AI Agents, Intelligent Orchestration, and Enterprise Functionality to the contact center. Discover what’s coming next!

Read More
AI Agent Assist: Real-Time Insights for Smarter CX

Discover how AI Agent Assist transforms CX by boosting agent efficiency and customer satisfaction. Get real-time insights, automate tedious tasks, and empower your team to drive revenue.

Read More
A No-BS Guide to Rescuing Your Contact Center with AI

Discover how AI in customer experience can revolutionize your contact center. Learn to replace legacy tools, scale personalized outreach, and drive better outcomes with modern CX platforms like Regal.ai.

Read More
Introducing Regal Custom Objects

Build your own data model and keep your agents in one tool with Regal Custom Objects.

Read More
8 Ways AI Sales Tools Assist in the Success of Call Centers

Discover how AI sales tools enhance call center performance, improve efficiency, and increase customer satisfaction with these 10 powerful strategies.

Read More
10 Proactive Outreach Strategies to Build Loyalty with Personalization

In order to build loyalty, it’s essential to create proactive outreach strategies that demonstrate your awareness of your customers' challenges and show that you’re taking action before they even need to ask for help.

Read More
7 Tips for Building AI Agents That Perform

Explore tips for building AI Agents that perform for your business - Spoiler: It's a lot like coaching human agents.

Read More
AI Emotional Intelligence: How AI Agents Keep Calm

Learn more about how AI emotional intelligence allows artificially intelligent voice agents to create emotion-regulated interactions using empathy, while keeping their cool even in heated situations, ensuring calls stay on track and productive.

Read More
Introducing Custom Events in Agent Desktop Activity Feed

Improve agent context with a synthesized view of the buyer's journey -- leading to more personalized conversations.

Read More
AI for Contact Centers: Insights from Industry Leading CEOs

Explore how AI for contact centers is transforming businesses and how leveraging AI can enhance customer interactions and improve retention.

Read More
Power vs. Progressive vs. Predictive Dialers

There is no one "best" auto dialer. There's just the right auto dialer for your campaign goals. We compare the capabilities of each and outline a framework for how you can make the right choice.

Read More
What Are the Best Use Cases for Branded Caller ID

Branded Caller ID is a great tool to increase call answer rates. Find out the best use cases for Branded Caller ID, and learn when it's not the right solution.

Read More
Regal Journey Builder Now Available for 8x8 Customers

Regal and 8x8 launch a joint offering, through the 8x8 Technology Partner Ecosystem, making Regal the only Journey Builder provider for 8x8’s outbound contact center customers.

Read More

Treat your customers like royalty

Ready to see Regal in action?
Book a personalized demo.

Thank you! Click here if you are not redirected.
Oops! Something went wrong while submitting the form.
Repeated pattern of light purple angel wings with green star accents on a black transparent background.Repeated pattern of light purple angel wings with green star accents on a black transparent background.