57 lines
1.6 KiB
Markdown
57 lines
1.6 KiB
Markdown
---
|
||
title: "AI Auto-Response"
|
||
type: concept
|
||
tags: []
|
||
sources: []
|
||
---
|
||
|
||
# AI Auto-Response
|
||
|
||
## Definition
|
||
|
||
AI Agent 基于客户消息内容和知识库自动生成并发送回复,无需人工介入的处理模式,是多渠道客服降低人工成本的核心机制。
|
||
|
||
## Workflow
|
||
|
||
```
|
||
Customer Message
|
||
↓
|
||
[Language Detection] → Detect language
|
||
↓
|
||
[Intent Classification] → FAQ / Appointment / Complaint / Review
|
||
↓
|
||
[Business Knowledge Base] → Retrieve relevant info
|
||
↓
|
||
[Response Generation] → Contextual, language-matched reply
|
||
↓
|
||
[Send to Channel] (or [Test Mode] → log only)
|
||
```
|
||
|
||
## Effectiveness Metrics
|
||
|
||
| Metric | Description |
|
||
|--------|-------------|
|
||
| **Auto-response Rate** | 自动处理的消息占比(目标: >80%) |
|
||
| **Response Time** | 从收到消息到发送回复的平均时长 |
|
||
| **Escalation Rate** | 转人工的消息占比 |
|
||
| **Customer Satisfaction** | 自动化回复的客户满意度评分 |
|
||
|
||
餐厅案例:自动处理率 80%,平均响应时间 <2 分钟(对比人工 4+ 小时)。
|
||
|
||
## Quality Safeguards
|
||
|
||
- **Never invent**:禁止生成知识库中没有的信息
|
||
- **Handoff guard**:不确定时主动转人工而非猜测
|
||
- **Brand consistency**:回复语气与品牌形象一致
|
||
|
||
## Related Concepts
|
||
|
||
- [[Intent-Classification]]:意图分类决定触发哪种回复策略
|
||
- [[Business-Knowledge-Base]]:知识库是自动回复的信息来源
|
||
- [[Human-Handoff]]:AI 边界之外的场景转交人工
|
||
- [[Language-Detection]]:回复语言跟随客户语言
|
||
|
||
## Sources
|
||
|
||
- [[multi-channel-customer-service]]
|