Regal Improve: How We Turned Transcripts Into Strategic Insights

Every day, enterprises deploy AI agents to handle thousands of customer interactions, resulting in massive volumes of conversational data, rich with signals about what customers want, where they’re getting stuck, and how the agent is performing overall.

Extracting those insights is incredibly difficult, however. 

The way people speak is inconsistent and imprecise, making it nearly impossible to group related conversations using strict keyword matching. Similar ideas can be phrased in dozens of different ways. Without bringing structure to the data, patterns stay hidden. 

As a result, transcript data remains one of the most underused sources of learning for improving AI agent performance. It also serves as a powerful form of business intelligence, revealing what customers need, want, and object to at scale.

While managers and operators can review some calls manually, it’s simply not possible for anyone to listen or even read through every transcript. 

Incomplete review leads to missed insights, which leads to missed opportunities for improving customer experiences and optimizing your AI agent’s performance.

Turns Transcripts Into Insights

To tackle this challenge, we've developed a streamlined approach to automatically extract and understand meaningful customer moments from transcripts.

How It Works

By leveraging advanced LLMs like GPT-4o mini, we pinpoint crucial moments from every call (customer questions, objections, reasons for calling, etc.).

We then enrich them with essential context, making each statement independently clear and insightful.

These enriched conversational moments are then converted into numerical embeddings using AWS Titan V2, allowing us to identify hidden patterns and conversation themes through sophisticated clustering techniques like Uniform Manifold Approximation Projection (UMAP) and Hierarchical Density-Based Spatial Clustering of Applications with Noise (HDBSCAN)

Finally, we use GPT-4.1 to clearly label these clusters, translating dense data into intuitive, human-readable, business-friendly insights.

The end result?

You gain rapid clarity on customer concerns and interests, enabling smarter decisions and more meaningful customer interactions.

Example: Regal’s Inbound AI Agent, Reggie

To bring this process to life, we’ll follow a real transcript from Regal’s inbound AI agent, Reggie. 

As we go through each step of the process below, I’ll refer back to this transcript to show examples of how it’s transformed into structured, actionable insights.

For context, Reggie is an enthusiastic AI agent we use at Regal to introduce our value proposition to customers and prospects. 

Reggie answers common questions, and engages with users in a Regal-branded way.

Here is the transcript between Reggie and a Regal customer:

How We Extract Meaningful Moments from a Transcript 

To ensure our input conversation transcripts are reliable we start by aggregating moments into a turn-by-turn, speaker role-based transcript with the help of a DBT model to create a Snowflake table as our input. 

To reduce noise or false insights, we only analyze transcripts that have at least four conversational turns, where genuine interaction occurred according to call disposition data, excluding any dialogue after the AI agent transfers the call.

Then, we employ GPT-4o mini to pinpoint and enrich key moments such as customer questions, objections, reasons for initiating contact, and decisions.

This careful extraction ensures we focus on valuable exchanges rather than routine interactions.

What Gets Extracted?

Each extraction falls into one of these categories: 

  • Questions: When a customer proactively asks questions.
  • Objections: When a customer expresses doubt, refusal, or resistance.
  • Reasons for calling: Specifically for inbound calls, capturing the primary reason a customer initiated contact.
  • Decisions/Intent: Specifically for outbound calls, when a customer explicitly shows interest or makes a decision.

What Gets Discarded?

We specifically tell the AI to discard:

  • Basic pleasantries and greetings (e.g., "hello," "thank you").
  • Routine data-sharing like names, dates of birth, or ZIP codes.
  • Short or uninformative responses (e.g., "yes," "no," "okay").

This filtering ensures that we only focus on rich, actionable moments in the conversation.

How We Enrich the Data

After extraction, we instruct the AI to enrich each moment by adding relevant context from surrounding parts of the conversation.

Each enriched moment provides clear, standalone context that transforms extensive conversational data into easy-to-understand, actionable insights, making it straightforward for your org to respond effectively.

Reggie Example: Extractions From the Transcript

Let's revisit our earlier example with our AI agent, Reggie, speaking to Sean, Tom, and Vanessa. 

From their conversation, GPT-4o mini helps us identify and clearly articulate critical customer moments and what category each moment lives.

{ "extraction_number": 1,   
"category": "reason",   
"enriched_moment": "looking to use a technology like Regal AI to enable help desk agents support customers more efficiently" }, 
{ "extraction_number": 2,   
"category": "question",   
"enriched_moment": "can we integrate our specific data, do you integrate with 8x8?" }, 
{ "extraction_number": 3,   "category": "question",   
"enriched_moment": "Is it accurate your pricing is around 10 to 25 cents a minute?" }, 
{ "extraction_number": 4,   "category": "objection",   
"enriched_moment": "the process to implement AI seems too difficult, I don't think we are ready" }

Turning Extractions into Machine-Readable Data

After we identify and enrich meaningful moments from conversations, we need to translate these text-based insights into something computers can easily understand.

In this case, we turn them into numerical embeddings. 

Think of embeddings as coordinates on a map: Where similar ideas and phrases land close to each other, making it simple for algorithms to spot similarities (and therefore patterns) between similar data points.

We use a powerful embedding model called AWS Titan V2 to transform each enriched conversational moment into a dense numerical representation. 

Imagine phrases like "refund delayed" and "why is my refund late?" 

Even though these phrases are slightly different in language, they’ll end up close to each other in the embedding space because their meanings overlap.

Visualizing a Simple Example 

Consider singular words “dog” and “puppy.” Let’s turn them into numbers. At a high level, the text gets tokenized, meaning puppy is split into “pup” and “###py.” 

We then map these tokens to vectors and refine them by looking at surrounding tokens. These vectors are pooled and normalized to create ‘embeddings’:

  • "dog" → [0.6, 0.9, 0.1, 0.4, -0.7, -0.3, -0.2]
  • "puppy" → [0.5, 0.8, -0.1, 0.2, -0.6, -0.5, -0.1]

Each position (dimension) is a learned feature discovered by the model during training. These dimensions don’t have neat human labels, but you can think of them as abstract gauges the model dials up or down. 

You can probe them, but they’re best treated as coordinates where distance encodes meaning. To build intuition, here’s a fictional abstraction of the first three dimensions:

  • Dimension 1 - Animals & living things: higher for animal/biology terms (“dog,” “puppy”), lower for abstractions (“house”).
  • Dimension 2 - Scale & age connotations: higher for large/mature (“dog”), lower for small/young/cute (“puppy”).
  • Dimension 3 - Domestication & human proximity: higher for domesticated/pet-like (“dog,” “cat”), lower for inanimate objects (“houses”).

Reducing the Density of Embeddings

Each individual word here has seven dimensions. As you can imagine, those dimensions build greater meaning and compound when words are put together in a full sentence.

When embedding an entire sentence, a vector can have upwards of 1,000 dimensions. You can’t visualize 7D (let alone 1,000D).

Since these embeddings get so complex, we use dimensionality reduction techniques (like UMAP) to project the embeddings into 2D diagrams that preserve local neighborhoods (i.e. preserve essential information).

Distances and clumps reflect semantic similarity, not human-named axes. For example in the above plot, if a vector connecting “man” to “woman” captures a gender relation, a similar offset might connect “king” to “queen.”

We simplify these embeddings into a smaller N-dimensional space from the origin, which makes broader patterns easier to spot for our clustering algorithm.

Reggie Example: How We Turn a Moment into an Embedding

Let's take one moment from Reggie’s conversation, this Customer Question:

"Can we integrate our specific data… Do you integrate with 8x8?"

A sentence embedding is going to be richer than a single word because the The AWS Titan V2 model encodes all tokens together, letting words shape each other’s meaning.

In this example, “Integrate” shifts toward “software/platform interoperability” because it co-occurs with “data” and the vendor entity “8x8” (a communications platform).

The pooled output becomes one vector (e.g., 1,024-D from Titan V2) that captures intent (“integration request”), entities (8x8), and topic (data/system interoperability), not just isolated words. 

That’s why a sentence embedding is richer: It represents meaning, intent, and topics, and brings context to phrasing, which is exactly what we want for clustering conversational moments. 

Our example would generate numbers as represented below. In this case, we show the first 20 dimensions out of a total of 1,024:

[0.23, -0.17, 0.34, 0.89, -0.560.12, -0.44, 0.67, 0.09, -0.31-0.78, 0.24, 0.85, -0.26, 0.19-0.14, 0.94, 0.19, -0.36, ...] 
(up to 1,024 dimensions total)

UMAP simplifies the above embedding instead into:

[0.45, -0.29, 0.74, -0.03, 0.52]

This UMAP reduction starts by building a neighbor graph in 1,024-D. Within those dimensions, it finds five new axes that preserve all the essential information (i.e. neighborhoods).

Those five coordinates don’t have fixed semantic labels; instead, they become the new axes that best maintain the closeness of other embeddings.

This reduced representation produces enough capacity for clustering (HDBSCAN), while dropping noisy or redundant variance.

Uncovering Topics and Patterns via Clustering

Once we've converted conversations into simplified numerical representations, the next challenge is discovering meaningful patterns.

This is where clustering comes into play.

Introducing HDBSCAN: A Smart Way to Find Conversational Patterns

We utilize a powerful algorithm called HDBSCAN (Hierarchical Density-Based Spatial Clustering of Applications with Noise) to identify patterns. 

Unlike traditional methods that require us to specify the number of topics beforehand, HDBSCAN automatically finds natural groupings by identifying dense pockets of similar conversation moments. 

Think of it as a way of spotting busy neighborhoods (clusters) and lonely outliers (noise) on a map.

To ensure groupings are meaningful, we can control and optimize this algorithm with parameters such as:

  • Min. Cluster Size: How many points (moments) we need to consider something a meaningful group. We set this to 20, ensuring only substantial conversation topics emerge.
  • Min. Samples or MinPts: Controls how conservative the ‘core point’ definition is.
    • Higher values = more conservative clustering. Only the most densely supported, most canonical patterns (e.g., repeated pricing questions or 8x8 integration requests) form clusters. Useful for executive-level summaries where clarity matters more than nuance.
    • Lower values = more inclusive clustering. Borderline cases (e.g., “Can I import a CSV?”) can be grouped into a related cluster like “Integration” instead of being treated as noise, which can help uncover edge-case needs or emerging topics.
  • Cluster Selection Epsilon: How relaxed the cluster stability threshold is. This controls how closely related clusters can be before they’re merged (e.g., setting it to 0.4 merges clusters less than 0.4 units apart). Higher values combine dense regions that are within the set distance, reducing micro-clusters. A value of 0 leaves clusters entirely to the algorithm’s natural separation.

As a result, we're able to uncover real, significant patterns whether customers repeatedly question pricing, express concerns about implementation, or frequently inquire about integration capabilities.

Reggie Example: Converting Embeddings to Topic Clusters

Let's revisit our example with Reggie and imagine we have extracted conversational moments from all of Reggie's conversations, not just with Sean, Tom, and Vanessa. Then we converted those conversations into embeddings, then visualized them as points. 

HDBSCAN might group their questions about data integration and pricing closely together, showing these as prevalent, common topics.

Conversely, the isolated moment where they express concerns about AI implementation might be identified as noise (if few other customers raised similar concerns).

Visualization Key:

  • Green squares (Cluster 1) are customer moments around data integration (“Can we integrate our specific data? Do you integrate with 8×8?”).
  • Orange circles (Cluster 2) capture pricing inquiries (“Is it accurate your pricing is around 10–25 cents per minute?”).
  • The purple “X” is an outlier: a single concern (“The process to implement AI seems too difficult—I don’t think we are ready.”).
  • Dashed gray rings around each dot show its core-distance (radius to its 5th-nearest neighbor).
  • Faint dashed ellipses around each cluster highlight the overall spread (covariance) of integration and pricing questions.
    • The red arrow between two core points denotes their mutual-reachability distance (MRD)—the key metric HDBSCAN uses to decide which cores link together in its hierarchy.

How AI Creates Meaningful Labels from Clusters

Identifying clusters is powerful, but translating them into actionable insights requires further clarification.

This is where GPT-4.1 steps in, transforming all these groupings into intuitive labels and concise descriptions that anyone in your organization can easily understand.

For each identified cluster, we take representative conversational moments along with our defined "Agent Goal" (what the AI is trying to achieve during interactions) and instruct GPT-4.1 to craft clear, relevant labels.

Each label succinctly summarizes the underlying theme or customer concern of that cluster. To further simplify interpretation, we organize these individual labels into broader "parent topics." 

For instance, detailed questions or comments about pricing (e.g. “Are there fees associated with integration?” or “That fee seems high for what we can afford”) can be grouped under the broader parent topic of "Pricing & Cost Concerns."

This hierarchical approach enables you to quickly grasp overarching themes and see, at a glance, what customers frequently discuss or express concern about—and take meaningful action to address those concerns.

Reggie Example: Putting Labels on Clusters

Okay so, back to Reggie's conversation with Sean, Tom, and Vanessa. After clustering, here's how GPT-4.1 might label each meaningful conversational moment:

Turning Labels Into Actionable Insights

Turning complex conversational data into actionable insights is the ultimate goal here.

Clearly labeled clusters, enriched with context and grouped into intuitive topics, empower you to make informed, strategic decisions quickly.

We tie conversational topics to configurable success metrics like conversation duration, sentiment analysis scores, and call transfer rates, so you can identify which types of conversations need work and proactively take action to fix them through prompt or Knowledge Base updates.

Bringing Structure to Insights for Digestibility

In order to consume these insights, it's important the data is structured in a manner which makes key information readily available. 

This output is written back to Snowflake, where all the rich conversational intelligence we’ve extracted and labeled comes together in a business-friendly format. This table serves as the single source of truth that your organization can consume, analyze, and act on. 

Each row in the table represents a meaningful moment from a conversation, enriched, categorized, and clustered for easy interpretation. Here are the key fields that brands care about:

Teams can analyze these fields to:

  • Monitor Operations: Track volume of specific customer concerns (e.g., pricing, integration questions) over time.
  • Analyze Root Cause: Combine with call outcome metrics like transfer rate or call length to understand where the AI agent is underperforming or excelling.
  • Optimize Agent Content and Prompt: Identify recurring objections or confusion to inform updates to the AI agent’s knowledge base or scripts.
  • Improve Customer Experience: Quickly surface friction points or emerging topics without having to manually read transcripts.

For example:

Using our Reggie clusters, we see that calls where Regal prospects ask about integration with 8x8 have higher-than-average call durations and negative customer sentiment.

We then dig into those transcripts and notice the AI Agent isn’t providing clear integration steps or addressing data security concerns. That signals the opportunity to update the AI Agent’s objection handling to cover those points directly, and expand the knowledge base with detailed integration instructions and security information so the agent can surface them in real time.

How You Consume Insights in Regal

To enable consumption of this data, we have created the Knowledge Base and Conversation Insights Dashboard, offering an intuitive and interactive way to consume conversational insights.

At the top we provide a quick summary of conversation volumes and topic counts, highlighting the most frequently discussed parent and sub-topics. At a glance, you’re able to see what’s top-of-mind for your customers.

Then we use bubble charts to represent the top conversation categories, Reasons/Decisions, Objections, and Questions.

The size of each bubble  shows topic prevalence, so you can clearly pinpoint prominent customer concerns or inquiries. Then, the color overlays a configurable performance metric (like transfer rate for our sales agent Reggie) to show how each conversational topic is performing relative to others.

Finally, the detailed breakdown table connects topics and sub-topics with critical metrics like transfer rate, conversation counts, and type distributions (e.g., objections or questions).

With this view, you’ll know exactly what conversations to drill into first to start troubleshooting. 

That could be:

  • The topics with the worst performance that need improvement
  • The best-performing ones you can learn from
  • The surprising ones that reveal unexpected customer concerns
  • The top questions your knowledge base doesn’t cover so you can close those gaps

Ultimately, transforming conversations into insights isn't just about understanding data, it's about truly understanding your customers and empowering your business to act with clarity and confidence.

From the image above, you might spot that “Company Differentiation and Reputation” has the highest overall volume, that 41% of “Customer Support and Call Handling” moments are objections, or that topics like “AI Technology and Architecture” are dominated by technical questions. 

Each of these signals where your attention should be focused most often, and also signals different opportunities—whether that’s strengthening objection handling or expanding your knowledge base to better cover high-interest areas.

Powerful Applications of Regal 

Search Customer Conversations by Intent, Not Just Keywords

One of the most compelling advantages of embedding conversational moments is enabling semantic search across an entire set of interactions.

For example, in a dashboard you search: "frustrated about long wait times." The query is passed through the same embedding model, transforming it into a vector. 

We then search for the closest vectors in our database of conversation embeddings, surfacing the most semantically similar moments, even if the customer never used the exact phrase “long wait.”

This allows you to instantly:

  • Discover real examples of specific pain points across conversations.
  • Jump to exact timestamps or clusters where those topics arise for manual review.
  • Explore themes and objections as they are actually voiced by customers.

Whether you want to find examples of people who are ready to convert, expressing confusion, or strongly objecting, you can now find them with natural language queries.

Pinpoint Gaps in Your AI Agent’s Knowledge Base

Another powerful application of semantic embeddings is evaluating how effectively an AI agent's knowledge base covers frequently discussed customer topics.

For example, if many customers inquire about integrating with a CRM, but few similar embeddings appear in the knowledge base, this signals an actionable gap, which could prompt updates or expansions to agent knowledge databases.

Stay Ahead of Customer Expectations with Early Trend Detection

Embedding and clustering customer conversations also allows you to track net new clusters and analyze shifts in embedding patterns over time.

This makes it possible to detect shifts in customer interest or concerns at an early stage.

For instance, if a new cluster of inquiries around AI ethics or data privacy emerges, you can quickly create relevant Knowledge Base content or adjust AI Agent prompts to address these concerns head-on, before they become widespread issues.

Unlocking the Full Value of Conversational Data

The challenge we started with was clear… Massive volumes of AI-handled conversations are filled with valuable customer signals that are buried in unstructured transcripts too large to review manually.

With Regal, every interaction becomes structured, enriched, and transformed into a format machines can understand, without losing the nuance humans need to gain insights and optimize AI agent performance.

By bridging raw language and actionable data, you move from guesswork to precision, from missed opportunities to targeted improvements.

The result is what we and every enterprise hopes to gain with AI: faster insight, smarter decisions, and customer interactions that keep getting better.

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
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
Contact Center Automation Trends 2025: AI, Voice & Omnichannel Guide

The top contact center automation trends defining 2025—from AI voice agents to event-driven journeys. Data from 350M+ calls processed on Regal's platform.

Read More
How to Improve Agent Productivity with AI | Contact Center Guide

5 proven ways AI agents improve contact center productivity. Learn how top teams reduce average handle time, boost FCR, and scale without adding headcount.

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
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
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
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
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 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
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
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
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
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
4 Essential SMS Campaigns for Home Insurance Companies

The fastest growing Home Insurance brands are using SMS in intelligent ways to drive higher customer engagement and more revenue. Get started with these 4 essential campaigns.

Read More
Introducing REGAL AI

Improve agent efficiency and win more customers with REGAL AI.

Read More
Introducing Regal Live

Monitor intraday call center metrics in real-time to adjust staffing, campaigns or coaching on the spot.

Read More
Introducing Regal IVR

Regal’s IVR leverages unified customer profiles to personalize inbound caller experience – delivering better customer experiences and business outcomes.

Read More
5 Essential SMS Campaigns for Home Services Companies

Use these 5 essential SMS campaigns for home services drive higher customer engagement and more revenue for your business.

Read More
The Next Step Forward in AI will come from Consumer Businesses

Consumer businesses are implementing AI-enabled customer experiences without any change in behavior on the part of consumers, which is leading AI to become common with more speed than past transitions like the internet and the smartphone. And it means that the next step in AI will not come from the LLM providers. The next big step forward in AI rests in the hands of consumer businesses.

Read More
Beyond CCaaS: From Customer Data Dips to Customer Data-Driven

Modernizing your Contact Center to drive personalization and more revenue requires a new tech stack you won't get with legacy CCaaS.

Read More
Innovating on Patient Care | B2C Sales Podcast Episode 7

Explore Eric Hauser's remarkable career journey from GovTech to healthcare disruption at Cadence, highlighting the transformative power of innovation, collaboration, with a special focus on the pivotal role of Regal in driving patient engagement and outcomes.

Read More
The Future of Conversation AI | B2C Sales Podcast Episode 6

Discover the transformative power of AI in conversations and how Regal's cutting-edge technology is reshaping call analysis and optimization for enhanced customer experiences with Balto's Marc Bernstein on our B2C Sales Podcast.

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
Introducing Collaboration-Native Features to CCaaS

Combining collaboration functionality into CCaaS workflow tools invites more cross-functional users from a company to participate in designing the end-customer experience, leading to better omni-channel orchestration and customer outcomes. Learn more about Regal's collaboration features.

Read More
Introducing QA Scorecards: Uplevel Agent Performance

Uplevel agent performance with Regal's QA Scorecards. With QA Scorecards, managers can ensure that all interactions meet the criteria and standards of excellence established by your company.

Read More
How Regal.io is Turning the $40B CX Industry on Its Head

Jon Heaps, former VP, Channel at Observe.ai, Talkdesk, and inContact interviews Alex Levin, Co-Founder & CEO of Regal.io, about the history of the contact center industry and some of the key challenges teams making outbound calls face as customers demand more online experiences.

Read More
New SMS & Branded Caller ID Rules Are Enhancing Customer Experience

Are you using Branded Caller ID for outbound calls or SMS? New SMS and Branded Caller ID regulations rolled out in Q2 2023 that you MUST KNOW ABOUT. The new regulations require that every company register their SMS campaigns and Branded Caller ID campaigns before being allowed to send texts or brand calls.

Read More
4 Essential SMS Campaigns for Life Insurance Companies

The fastest growing insurance brands are using SMS campaigns in intelligent ways to drive higher customer engagement and more revenue. You can too with these 4 essential SMS campaigns.

Read More
Need to Boost Call Center Productivity? Switch to a Power Dialer

Discover how a power dialer can revolutionize outbound calling and enhance sales team productivity. Schedule a consultation with our experts to explore Regal.io's power dialer.

Read More
The Financial Impact of Working with Regal.io: 547% ROI

Discover how working with Regal.io led to a 547% ROI for businesses. Learn more about the financial impact and success stories in our comprehensive case study.

Read More
Announcement: Regal Conversation Intelligence

Regal’s Conversation Intelligence drives higher conversion rates for B2C sales teams. We use both the traditional QA/coaching tools, and brand new conversational triggers that allow you to update customer profiles and send automated follow up messages based on what is said in a conversation.

Read More
Announcement: Regal SMS Suite

Regal’s SMS Suite allows brands to actually drive revenue from SMS. Drive cross-channel engagement using our comprehensive Triggered & Scheduled SMS Journeys (aka SMS Marketing), 1:1 SMS Conversations (aka 2-Way SMS), and AI SMS Bot.

Read More
Announcement: Regal Segment Builder

Regal’s powerful, no-code Segment Builder enables any business user to segment, target, suppress, and send blasts of cross-channel communications (SMS, calls or webhooks) to their customers – all based on a real-time unified customer profile.

Read More
Friends don’t let friends buy CCaaS

Learn when event-driven sales systems like Regal will disrupt the $40B Contact Center Software and CCaaS industry, by improving customer experience and increasing revenue.

Read More
Meet Regal Call Branding™: Branded Caller ID for 400M+ US Devices

We are excited to announce Regal Call Branding™ including Branded Caller ID. Available on all 400M wireless devices in the US (as well as most of Canada and the UK), Regal Call Branding™ puts you in control of what people see when you call their cell phone – including showing your brand and/or logo.

Read More
Q&A with Perry Health’s Scott Chesrown

Get behind-the-scenes insights about Perry Health’s 23% revenue increase with Regal.io. Perry Health’s Scott Chesrown sat down with Regal.io and discussed how they implemented outbound sales technology, integrated new capabilities into their process, and built on their early success.

Read More
Drive More Contact Center Revenue With These 6 Holiday Tips

It’s the holiday season and you’d like to hit your December revenue goals. Outbound B2C sales during the holidays can be a major performance driver – if you're prepared and you have the right tools in place. Use these seven tips to get your outbound B2C sales in shape for holiday success.

Read More
Regal.io Raises $38.5M in Series A Funding

Today we are excited to announce that based on the success our customers are seeing using Regal.io, we have raised $38.5 million in Series A funding led by Emergence Capital to continue to invest in our teams and products.

Read More
Announcing our Integration with mParticle

Our integration with mParticle enables you to create a unified customer profile and connect other first party customer data.

Read More
What is a Journey Builder?: A Complete Guide

Say goodbye to batch processing, complicated SQL queries or custom engineering to decide who to call. Journey builders help B2C create more timely, relevant and personalized outreach to customers.

Read More
Goodbye Regal Voice, Hello Regal.io

Friends and supporters, We are excited to announce our updated branding and website. It better captures what we stand for.

Read More
Announcing our Integration with Twilio Segment

We are excited to announce our integration with Twilio Segment, allowing you to seamlessly connect your first-party customer data with Regal.io and 200+ other integrated tools.

Read More
Milestone: $1 Billion Revenue Driven for Our Customers

We are thrilled to announce that Regal.io has driven over 20M conversations between our customers and their end users, leading to $1 billion in revenue driven to date.

Read More
The RAG Playbook: Structuring Scalable Knowledge Bases for Reliable AI Agents

Learn how to structure a knowledge base that keeps AI Agents accurate and on-script. Discover why human-style KBs fail, and apply best practices like single-topic chunking, concrete instructions, and explicit outcomes to reduce hallucinations and scale reliable RAG performance.

Read More
How to Use SIP to Integrate Regal Voice AI Agents with your Contact Center Software

Learn how SIP integration enables enterprises to connect Regal Voice AI Agents to existing CCaaS platforms, pass call context in real time, and deploy voice AI without infrastructure changes.

Read More
Demystifying AMD: How Answering Machine Detection Really Works

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

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.