> For the complete documentation index, see [llms.txt](https://docs.maiagent.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.maiagent.ai/maiagent-user-guide/maiagent-user-guide-en/application/voicecs.md).

# Voice Customer Service

Modern voice customer service systems combine artificial intelligence technology to provide diverse and flexible solutions that improve service efficiency and customer experience. The overall process begins with **voice input**, which is converted to text through **ASR (Automatic Speech Recognition)**, and then various AI assistant features can be applied based on requirements for further processing.

AI assistants cover the following applications:

1. **Intent Recognition**: Parses customer voice content to quickly understand needs or issues for subsequent processing.
2. **Summary and Dispatching**: For complex customer needs, generates summaries and automatically dispatches to the appropriate service department or system.
3. **Intelligent Quality Inspection**: Performs real-time call monitoring and analysis to ensure service quality meets standards.
4. **Intelligent Response**: Generates appropriate response content based on intent recognition results and converts it to voice through **TTS (Text-to-Speech)** technology to reply to the customer.

These features can be flexibly selected based on actual needs and do not necessarily require full-process execution. Instead, they are designed for different scenarios and requirements. For example, some scenarios may only require intent recognition, while intelligent response is suitable for situations where you want to provide real-time voice responses.

The combination of these application modules builds a diverse and highly adaptable voice customer service ecosystem that achieves more efficient and personalized customer interactions. Next, we will provide detailed introductions on how to build AI assistants and MaiAgent solutions for each application, showcasing their technical core and application value.

```mermaid
flowchart LR
    A[Voice Input] --> B[ASR Speech Recognition]
    B --> E[Intent Recognition]
    B --> X[Live Agent Assistant]
    B --> F[Summary & Dispatching]
    B --> G[Intelligent Quality Inspection]
    B --> H[Intelligent Response]
    

    
    subgraph AI Assistant
    E
    F
    G
    H
    X
    end
    
    H --> I[TTS Text-to-Speech]
    I --> J[Voice Output]
```

MaiAgent currently has built-in integration with multiple ASR speech recognition and TTS speech synthesis services, making it convenient for users to choose the appropriate technology for different scenarios.

<figure><img src="/files/e2gDchBvLr8yWkox5QF3" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.maiagent.ai/maiagent-user-guide/maiagent-user-guide-en/application/voicecs.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
