Разработка AI-контакт-центра (AI Contact Center)
AI-контакт-центр — система, где AI выполняет часть функций операторов: обрабатывает входящие звонки и чаты, ведёт исходящий обзвон, анализирует разговоры, подсказывает операторам. При правильном внедрении снижает стоимость обработки контакта на 40–60%.
Архитектура AI-контакт-центра
Входящие каналы:
Телефония → Voice Bot / ACD → Operator + Agent Assist
Chat/Email → NLP Bot → Operator + Agent Assist
Социальные сети → Bot → Operator
AI-компоненты:
├── STT Engine (Deepgram / Whisper)
├── NLU / Intent Recognition (GPT-4o)
├── Voice Bot (голосовые сценарии)
├── Agent Assist (подсказки оператору)
├── Speech Analytics (post-call анализ)
├── Quality Monitoring (авто-оценка звонков)
└── Analytics Dashboard (AHT, FCR, CSAT)
Оркестратор контакт-центра
from dataclasses import dataclass, field
from enum import Enum
class ContactChannel(Enum):
VOICE = "voice"
CHAT = "chat"
EMAIL = "email"
class ContactStatus(Enum):
QUEUED = "queued"
BOT_HANDLING = "bot"
OPERATOR_QUEUE = "operator_queue"
OPERATOR_ACTIVE = "operator_active"
COMPLETED = "completed"
@dataclass
class Contact:
id: str
channel: ContactChannel
customer_phone: str
status: ContactStatus = ContactStatus.QUEUED
bot_session: dict = field(default_factory=dict)
operator_id: str = None
start_time: float = None
transcript: list = field(default_factory=list)
intent: str = None
sentiment_history: list = field(default_factory=list)
class ContactCenterOrchestrator:
async def handle_new_contact(self, contact: Contact):
# 1. Идентификация клиента
customer = await self.crm.lookup_customer(contact.customer_phone)
# 2. Маршрутизация: бот или оператор?
route = await self.router.decide(contact, customer)
if route == "bot":
await self.start_bot_handling(contact, customer)
else:
await self.queue_for_operator(contact, customer, route.skill_group)
async def start_bot_handling(self, contact: Contact, customer: dict):
contact.status = ContactStatus.BOT_HANDLING
bot = VoiceBot(contact, customer)
result = await bot.run()
if result.needs_escalation:
await self.escalate_to_operator(contact, result.reason)
else:
await self.complete_contact(contact, result)
Метрики и KPI
| Метрика | До AI | После AI |
|---|---|---|
| Containment Rate | 0% | 55–65% |
| AHT | 360 сек | 220 сек |
| FCR | 72% | 81% |
| CSAT | 7.2 | 8.1 |
| Стоимость контакта | 100% | 45–60% |
Этапы внедрения
- Фаза 1 (2–3 мес): Speech Analytics + Agent Assist — без изменения процессов
- Фаза 2 (2–3 мес): AI-IVR для маршрутизации — снижение Handle Time
- Фаза 3 (2–3 мес): Voice Bot для топ-5 сценариев — Containment Rate
- Фаза 4 (1–2 мес): Оптимизация и масштабирование
Полный проект: 8–12 месяцев.







