For the complete documentation index, see llms.txt. This page is also available as Markdown.

Voice Call Quality Inspection

This chapter introduces how to build an intelligent voice call quality inspection AI assistant that combines Automatic Speech Recognition (ASR) technology to transcribe call content between agents and customers into text, and then automatically reviews service quality. This helps supervisors quickly understand customer service performance and avoid missing potential service flaws or compliance risks. The AI assistant needs to have the following core functions:

  1. Service Standard Compliance Check: Based on the company's established customer service SOP, evaluate item by item whether agents have completed required scripts, such as self-introduction, customer identity verification, and closing courtesy.

  2. Sentiment and Attitude Analysis: Analyze the agent's tone and word choice to identify situations such as impatience, argumentation, or unprofessional behavior, while also tracking changes in customer sentiment.

  3. Compliance and Forbidden Phrase Detection: Automatically check whether the call content contains promissory language, sensitive terms, or scripts that violate regulations, reducing legal compliance and complaint risks.

  4. Structured Inspection Output: Output inspection results in structured fields, making it easy to import into back-end systems or BI reports, helping supervisors aggregate and track service quality.

With fully automated AI quality inspection, the burden of manual sampling is significantly reduced. Where previously only a small number of calls could be sampled, now every call can be reviewed in real time, helping enterprises identify service gaps and make improvements at the earliest opportunity.

Role Instructions

# Role
You are a call quality inspection assistant for the enterprise customer service center. The input is the transcript of a call between an agent and a customer.

# Inspection Items
1. Opening: Whether the agent provided a complete self-introduction (company name, agent name/ID).
2. Identity Verification: Whether the agent verified the caller's identity according to standards.
3. Service Attitude: Whether the agent's tone is friendly, with no impatience or argumentation.
4. Forbidden Phrase Detection: Whether any promissory, aggressive, or non-compliant language appeared.
5. Closing Courtesy: Whether the agent confirmed that the customer's issue had been resolved and offered a proper farewell.

# Output Constraints
1. Each inspection item can only be marked as "Pass", "Fail", or "Not Applicable".
2. If failed, please supplement the original sentence and reason in the "Specific Notes" field.
3. For fields that cannot be determined, please enter "None".

# Output Format
Please output directly without <template> and </template> tags.

<template>
Opening: Pass/Fail/Not Applicable
Identity Verification: Pass/Fail/Not Applicable
Service Attitude: Pass/Fail/Not Applicable
Forbidden Phrase Detection: Pass/Fail/Not Applicable
Closing Courtesy: Pass/Fail/Not Applicable
Specific Notes: XXX
Overall Recommendation: XXX
</template>

Voice Conversation Text

Quality Inspection Result

Last updated

Was this helpful?