AI Auto-Dialer for Debt Collection: Voice Bot for Debt Recovery
Collection departments spend up to 70% of their time on dialing and compliance checks under 230-FZ. AI auto-dialer replaces operators in early overdue stages (DPD 1–30): the voice bot informs about the debt, offers payment options, and records Promise to Pay (PTP). A typical scenario: an operator spends a minute on greetings and data verification, and calls after 18:00 are prohibited. An AI bot processes 1000 contacts in 2–4 hours without breaks or errors. Moreover, the voice bot adapts to the debtor's accent and intonation, increasing PTP rates by 15–20% according to our data. Our experience: over 5 years in AI solutions for fintech, 30+ deployed systems. In one project for an MFO with a portfolio of 30,000 active debtors, deploying AI calling reduced call center load by 60% in the first month, and PTP rate increased from 12% to 18%.
How AI Auto-Dialer Complies with 230-FZ?
Law 230-FZ strictly regulates the frequency and timing of calls to debtors. The system automatically checks each connection:
from datetime import time
CALL_RESTRICTIONS = {
'weekdays': (time(8, 0), time(22, 0)),
'weekends': (time(9, 0), time(20, 0)),
'max_calls_per_day': 1,
'max_calls_per_week': 2,
'max_calls_per_month': 8,
}
async def check_call_allowed(debtor_id: str) -> tuple[bool, str]:
now = datetime.now()
contact_history = await db.get_contact_history(debtor_id)
current_time = now.time()
window = CALL_RESTRICTIONS['weekdays'] if now.weekday() < 5 else CALL_RESTRICTIONS['weekends']
if not (window[0] <= current_time <= window[1]):
return False, 'outside_allowed_hours'
today_calls = sum(1 for c in contact_history if c['date'].date() == now.date())
if today_calls >= CALL_RESTRICTIONS['max_calls_per_day']:
return False, 'daily_limit_exceeded'
if await is_in_stoplist(debtor_id):
return False, 'in_stoplist'
return True, 'allowed'
Additionally, the compliance module tracks changes in the law and updates rules without stopping the service. We guarantee that the system always meets the current requirements of 230-FZ.
For speech recognition we use Whisper, and the dialog engine is built on GPT-4o-mini with fine-tuning on historical recordings. p99 latency does not exceed 800 ms thanks to optimized pipeline and batch processing.
Why AI is More Efficient Than Manual Calls?
| Parameter | AI Auto-Dialer | Human Operators |
|---|---|---|
| Processing speed (1000 debtors) | 2–4 hours | 1–2 days |
| 230-FZ violations | 0% (programmatic control) | up to 15% violations |
| Availability | 24/7 | 8-hour day |
AI handles repetitive scenarios more consistently, does not get tired, and avoids human errors like missing a stop-list. Additionally, the system logs every interaction for subsequent audit.
How Scripts Adapt to DPD Stage?
| DPD Stage | Bot Action | Compliance Rules |
|---|---|---|
| 1–7 | Soft notification, reminder | 1 call per day, weekdays only |
| 8–30 | Active collection, penalty calculation, installment offer | 2 calls per week, stop-lists |
| 30+ | Handover to operator | Only after consent |
COLLECTION_SCRIPTS = {
'dpd_1_7': """
Hello, {name}! This is {creditor}.
Your contract {contract_id} has an overdue payment of {amount} rubles.
Please pay by {payment_deadline}.
Do you plan to pay soon?
""",
'dpd_8_30': """
Hello, {name}. This is a call from {creditor}.
Your debt under contract {contract_id} is {amount} rubles,
overdue {dpd} days. Penalties are accruing at {penalty_rate}% per day.
We are ready to consider a convenient repayment plan for you.
Can you pay today?
""",
}
Adapting scripts to a specific portfolio (amounts, tone, legal wording) takes 1–2 days. We use few-shot prompts for quick setup without model retraining.
Capturing PTP and Installment Plans
@dataclass
class PromiseToPay:
debtor_id: str
contract_id: str
promised_amount: float
promised_date: date
call_id: str
confirmed: bool = False
async def process_payment_commitment(
session: dict,
user_response: str
) -> PromiseToPay | None:
extraction = await client.chat.completions.create(
model='gpt-4o-mini',
messages=[{
'role': 'system',
'content': 'Extract payment promise from text. JSON: {"date": "DD.MM", "amount": N, "full": bool}'
}, {'role': 'user', 'content': user_response}],
response_format={'type': 'json_object'}
)
data = json.loads(extraction.choices[0].message.content)
if data.get('date'):
ptp = PromiseToPay(
debtor_id=session['debtor_id'],
contract_id=session['contract_id'],
promised_amount=data.get('amount', session['total_debt']),
promised_date=parse_date(data['date']),
call_id=session['call_id']
)
await db.save_ptp(ptp)
return ptp
return None
Extracted PTPs are automatically pushed to CRM: the manager sees the promised date and amount; if unpaid, the system initiates a callback. Integration with 1C and Bitrix24 is included in the base package. To protect against hallucination, we set up validation via chain-of-thought prompts.
What Is Included in the Service
- Audit of the current collection process — analysis of scripts, compliance, and communication channels.
- Development of voice scripts — tailored to DPD stages, with A/B testing.
- Integration with CRM and PBX — REST API, webhook, SIP connection.
- Model training — fine-tuning GPT-4o-mini on historical call recordings.
- Pilot launch — 500–1000 debtors, 2 weeks, report with metrics.
- Documentation and support — API description, operator manual, SLA 8/5.
Process of Work
- Analytics — we analyze your overdue portfolio, scripts, and infrastructure (1 week).
- Design — architecture of scenarios, compliance rules, integration schemes (1 week).
- Implementation — development of the voice bot, setup of NLP pipeline, connection to PBX (2–3 weeks).
- Testing — QA on synthetic and real calls, adjustment of tone (1 week).
- Deployment and monitoring — deployment on your servers or in the cloud, setup of logs and alerts (3 days).
Timeframes
Basic version (one scenario, one DPD slice) — 3–4 weeks. Full system with PTP tracking, multi-slice, and integration — about 2 months. Exact timing determined after audit.
Contact us for a free audit of your collection process. Order a pilot project — verify the effectiveness of AI calling on your base. We will evaluate the project within 2 business days.







