AIAI EngineerApr 8, 2026· 22:56

Contact Center Voice AI: Low-Latency Intelligence Extraction from Messy Audio Streams — Dippu Singh

Dippu Singh of Fujitsu North America presents an architecture for real-time voice intelligence in contact centers that reduces post-call work by 50% through structured intent extraction from messy audio streams. The pipeline comprises four stages: voice capture with stereo channel splitting and PII masking, speech-to-text with domain-specific dictionaries, a generative AI core that uses system prompts to output separate JSON bullet points for customer intent and operator actions, and a customer data sync layer that maps LLM output to CRM fields via REST APIs. Key results show after-call work (ACW) dropped from 6.3 to 3.1 minutes, while data entry quality became standardized. Current constraints include STT accuracy for heavy accents, API token costs for long transcripts, and security compliance overhead. The roadmap targets explainable AI for agent coaching, predictive staffing from categorized intent data, and real-time abusive-call detection to protect operators.

Transcript

Intro0:00

Dippu Singh0:00

Right. Hello everyone, welcome to the AI Engineer 2026 online track. Um, good morning, good afternoon, good evening—depending upon your time zone. My name is Dippu Singh, and I lead the initiatives in the Emerging Data Technologies & AI Architecture at Fujitsu North America, and today I will be giving you, or maybe providing you, a deep dive into a very specific but a very highly impactful engineering challenge which we have encountered in our contact centers.

So with that, let me just quickly share my screen and get this going.

Alright, so, um,

this is the topic of the discussion: Voice Ops finding low-latency intelligence extraction from messy audio streams. When we talk about, you know, Generative AI, we often, you know, focus on clean text inputs. But if you go into the real world—specifically in the customer service or, or maybe contact centers specifically—the data does not start as clean text,right?

It starts as messy, quite overlapping, sometimes emotionally charged, and it may have multi-channel audio streams also within that,right? And today we will explore the technical architecture which is required to capture that audio, process it withultra-low latency, and use the Generative AI to extract structured, actionable business intelligence out of it.

So with that, let's get started with this.

So here is our roadmap for the next 25 minutes. First, we will stage the—stage with what the current challenges are. We have to understand the operational realities and the intense human bottlenecks in modern contact centers to understand why this engineering matters.

Agenda2:00

Dippu Singh2:25

Second, we will walk through the solution which is provided. I will break down our high-level architecture into 4 key components, detailing how we move from raw audio to a structured JSON using advanced summarization workflows. Thirdly, we will look at the key outcomes, specifically like how these technical implementations translate into hard ROI and operational impacts.

And finally, we will discuss the roadmap ahead and being transparent about the current tech engineering constraints which we face now and then, and where we are taking this technology and the roadmap ahead.

Problem3:12

Dippu Singh3:12

So to engineer a great solution, we first need to deeply understand the problem. So let's look at the current state of the contact center operations.

So contact centers, they are the front lines of the customer experiences, but structurally they are breaking under the pressure. If we look at the industry data, over 50% of the contact centers they identify hiring, training, and productivity as their most critical barriers.

Why? Because the job is incredibly difficult. When we analyze the reasons why the operators they leave for the other professions, high stress is the number one factor as part of it. Now, operators are expected to handle complex customer emotions, navigate the

multiple customer data platforms or the CRM systems involved into it, and also document everything perfectly. So if you think about this, this leads to a massive retention problem,right? We are caught in a negative spiral where understaffing leads to higher stress for the remaining operators, which leads to high turnover, and that ultimately implies more understaffing,right?

So to break this cycle, we just

cannot hire more people; we have to fundamentally engineer the stress out of the workflow.

And the most glaring inefficiency in this workflow is something called after-call workflow, or ACW, which we are going to discuss as part of this slide. According to our baseline studies, the average contact center call typically lasts about, like, 6.5 minutes.

However, the average post-processing time where the operator types up the notes, summarizes the call, and selects the disposition codes, it takes, like, almost 6.3 minutes. So this is nearly like 1:1 ratio we are talking about. And this also implies operators are spending almost as much time doing administrative data entry as they are actually talking to the customers.

Furthermore, because the summarization relies on an individual operator's memory and the writing skills, the data quality is highly inconsistent. Our core engineering mission here was clear, like: use AI to target the after-call work, which is ACW. If we can mechanize the summarization and the data extraction, theoretically we can reduce the post-processing time almost by 50% or even more.

And this shifts the enterprise, you know, focus from merely just handling the calls to actually, you know, analyzing the voice of the customers for the business growth which we are looking out every now and then.

So how do we engineer that shift? Let's deep dive into the technical solution and the architecture we built to solve this.

So we designed a 4-stage low-latency pipeline to transform the conversational audio into a structured business intelligence with minimal human intervention. And it starts with Voice Capture, which is tapping into the telephony system to extract raw, high-fidelity audio streams.

Architecture6:58

Dippu Singh7:22

And that flows into our Speech-To-Text engine, STT, which is responsible for high-accuracy transcription. Next is the brain of the system, the Generative AI Core. This is where we do the heavy lifting of the intent recognition and summarization. And finally, the Customer Data Sync layer, which translates those AI insights into API calls to update the customer data or CRM data automatically.

Let's look at the engineering under the hood for each of these components in detail.

Audio Pipeline8:04

Dippu Singh8:04

So the first component is the Voice Capture in AI. The typical rule is garbage in equals garbage out. So if your audio intake is flawed, the LLM will hallucinate later on. We do real-time audio intake, so applying noise filters to strip out the back-office chatter or, you know, anything of those sort which is creating an attenuation is important, and normalize the audio level is very, very, very important for us.

Crucially, if we perform this channel mapping, we absolutely must split the stereo audio to isolate the agent on one channel, say, on the very left, and the customer on the other side, which is the veryright,right? So if you mix them into a single mono track, like, kind of overlapping with each other, the AI will struggle to figure out who said what, and thereby, you know, ruining the entire downstream summary.

So it's important that we have that channel mapping intact, and it separates who is what and who is saying what,right? Finally, we apply a security layer because sometimes the audio streams can contain the credit card numbers, or maybe passwords, or anything which is personally identifiable information, PII.

So we utilize buffer management and early-stage PII masking technique so that the sensitive data never hits the LLM memory banks whenever we are moving ahead in the channel.

Now, next, the audio. It hits the Speech-To-Text engine for Generative AI, or the LLMs, to summarize the data effectively or your response effectively. We found that the speech-to-text, the STT, accuracy must be above 90%. We utilize advanced acoustic modeling to map the

phonemes and filter out any regional dialects. We then apply the language logic utilizing, like, domain-specific dictionaries. Just for example, if it's an insurance agent, the Speech-To-Text engine, STT, needs to know the difference between a term "life" and a term "right."

Both of them are very close to each other, but still, there should be a difference between them. Finally, post-processing is also vital. We use inverse text normalization and auto punctuation. For example, if a customer says "$5,000," the speech-to-text engine should output that in numerical fashion.

And this numerical formatting drastically improves the LLM's ability to extract the entities in later point in time.

Now we reach the Generative AI Core. We are not just throwing a raw transcript script at a LLM, but we are also asking it to summarize it. Like, we use a highly orchestrated approach in this case. In our orchestration layer, we use specific prompt templates.

AI & Sync11:21

Dippu Singh11:42

Our setup showed that if you just ask an LLM to summarize a call, it outputs a messy narrative paragraph. So instead, we use a few short libraries to instruct the LLM to output separate bullet points: one list for customer inquiry, and a separate list for operator's action.

Then comes the reasoning layer. In the reasoning layer, we extract the intent. We provide the LLM with a predefined list of customer call reasons, like cancellation or new application or any kind of claim status, and instruct it to classify the transcript and output the reason why it chose that specific classification.

And finally, the trust layer, where we apply the token optimization to keep the latency low and run the automated hallucination checks to ensure the generated summary is strict and it is grounded in the transcript.

Now, the final technical hurdle is getting this beautiful data back into the hands of the business. Our API gateway acts as a schema mapper. It takes the JSON output from the LLM and maps the field, like "customer intent" or "resolution status," and directly to some corresponding fields

based on the company's CRM system or any customer data which we have laid out via some REST APIs. So we don't remove the human entirely in this. We use a verification step in between. The operator sees the AI-generated summary auto-populated on their screen.

They do a quick visual field validation, make some minor edits if necessary, and then just click the confirm. Simultaneously, this structured data flows into our business intelligence models, aggregating the voice of the customer data for management dashboards and automatically, you know, flagging the candidates for new FAQ data entries.

Data Flow14:17

Dippu Singh14:17

Now, to tie the architecture together, this is the linear workflow logic of the data pipeline. We take the raw transcript, complete with the time indexing, confidence scoring, and denoising. We pass it through the speaker separation because we split the stereo channels in step one.

We can easily stitch the dialogue together logically, like "customer said X," "agent said Y." Then we move to the context deduction where the LLM spots the entities like account numbers or product name or customer name, runs the sentiment analysis, and recognizes the intent.

And the final state is the structured output. So instead of a wall of text, the system outputs clear and clean JSON schema, matching some predefined customer data or maybe CRM templates which we have in the enterprise, and then categorizes neatly into bullet points.

And this strict formatting is what turns an unstructured conversation into a database-ready asset.

Outcomes15:40

Dippu Singh15:40

So what happens when we deploy this architecture in a real contact center environment? Let's look at the outcomes.

The operational impacts out of the implementation were quite immediate and highly measurable. Look at the

ACW time. Under the manual operation, average after-call work was 6.3 minutes, powered by our AI workflow. That dropped to, like, 3.1 minutes, which is, like, almost 50% reduction in the processing time. If you calculate that across 500 seats handling thousands of calls a day, you are looking at a massive operational saving, the equivalent of almost reclaiming dozens of full-time headcounts purely from an efficiency standpoint.

The next aspect is data entry quality. It moved from a highly subjective and a variable to a highly standardized and uniform output. The inquiry categorization, or the call reason tagging, moved from being dependent on an operator mode or memory

to being strictly logic-based, resulting in a highly consistent voice of the customer dataset for management. And ultimately, by removing this repetitive administrative burden of typing out notes, we reduce the cognitive load on the operators, thereby stabilizing the operations and directly combating the stress which is linked with the staff.

And this ultimately reduced the turnover we identified at the very beginning of our discussion.

Constraints17:35

Dippu Singh17:35

While the results were fantastic, the engineering work is never done. And let's talk about the constraints we face and our roadmap for the future.

We are currently navigating three main constraints. First is the

source-to-text accuracy, STT accuracy. The entire Generative AI summary relies on the transcript. So if the STT engine fails to pick up heavy accents or poor audio quality, the LLM has nothing to work with. So the STT optimization is a continuous battle for us.

Second is the initial setup cost. While the long-term ROI is massive, the initial consumption of the API tokens, especially running complex LLM reasonings on long 20-minute transcripts, can be costly, especially during the initial scaling phases. Those are tough ones.

And we are constantly working on token optimization techniques to bring this number down. The third is the security and compliance: handling PII, any kind of sensitive information in audio streams is very complex, and ensuring robust masking before the data hits the cloud endpoint is a strict requirement.

And because of this, we add some layers, and it ultimately increases the latency and also adds some overhead from an architecture standpoint. So we are still figuring out how we can reduce those extra layers and make it much more robust component-wise.

Roadmap19:34

Dippu Singh19:34

Allright, so to address these constraints

and push the boundaries of what's possible, our roadmap is currently broken down into three phases. Phase one, it focuses on explainable AI. We want to move beyond just summarizing calls to actually, you know, coaching the operators. We are engineering the systems to analyze the audio post-call and provide operators with instant private feedback on their either soft skills or empathy level or any kind of accuracy from an information standpoint.

The phase two, it targets the predictive staffing by taking the massive amount of categorized intent data we are now capturing. We can feed the same exact data, intent data, into a time series analytics, and this will allow the workforce management to accurately forecast the call volumes spikes based on those specific topics and thereby optimizing the shift scheduling.

The phase three is perhaps the most important for human well-being, combating the customer harassment. Contact center agents, they mostly face an increasingly high amount of verbal abuse. And we are developing a low-latency sentiment and acoustic analysis that can detect when a customer becomes abusive.

Ultimately, the system can, you know, trigger some triggers, I mean, and alerts or something which is important from a notification standpoint to a supervisor or anyone who is there from the management, upper management standpoint, or maybe seamlessly transfer the call to an AI voice agent just to protect the human operator's mental health in case of these tough conversations.

Allright, so by applying these rigorous engineering techniques to the messy audio data, we can definitely transform the contact centers from

Closing21:48

Dippu Singh22:04

cost centers of, like, high stress into highly efficient and intelligence-gathering engines that protect their workforces. That's the whole idea of having this,right? Thank you so much for your time and listening to me. I have included my QR code, which I will just flash in here so that you can grab me over LinkedIn.

And please feel free to connect if you would like to discuss the architecture or any prompt engineering strategies related to the discussion which we had in here, and I'm happy to connect and make things work, things out between us, and we can have more conversations.

So thank you so much for listening to me, and have a good one. Bye.