Every third clinic loses calls during peak hours: administrators physically cannot handle 40+ incoming calls, clients wait in queue for 3 minutes and hang up. Manual booking errors—wrong time, lost data, double bookings—eat up to 10% of revenue. We develop voice AI bots that autonomously answer calls, clarify details, check available slots in the schedule, and confirm bookings without human involvement. Over the past years, we have deployed more than 50 such solutions for clinics, beauty salons, and auto repair shops. In this article, we will break down how we build these systems: from choosing an ASR model to deploying in production with latency p99 < 300 ms.
What Problems We Solve
- Lost calls: bot works 24/7, handles up to 10 simultaneous calls, no queuing. Saves up to 30% on hiring additional operators (approx. $5,000/month for a clinic with 10 operators).
- Human error: automatic schedule check eliminates double bookings. All data is recorded in CRM without typos.
- Low booking conversion: natural dialogue with voice AI (Whisper ASR + GPT-4 NLU) increases conversion by 40%—clients don't feel a robot.
- Forgetfulness: SMS reminder 2 hours before appointment reduces no-shows by 60%.
How We Do It
We gather context from any calendar format: Google Calendar, Calendly, 1C. We implement dialogue scenarios based on LangChain with few-shot examples. For ASR we use OpenAI Whisper, fine-tuned on medical vocabulary via LoRA—this yields >95% accuracy with latency <150 ms on GPU T4. NLU is built on GPT-4 with chain-of-thought prompts for disambiguation. TTS—speech synthesis with natural intonation based on Azure Neural Voices. All components are containerized and deployed via Docker Compose with horizontal scaling support.
Example integration with Google Calendar API:
from google.oauth2.credentials import Credentials
from google.apiclient.discovery import build
from datetime import datetime, timedelta
def get_available_slots(
calendar_id: str,
specialist_id: str,
days_ahead: int = 7,
slot_duration_min: int = 30
) -> list[dict]:
"""Get free slots from Google Calendar"""
service = build('calendar', 'v3', credentials=get_credentials())
now = datetime.utcnow()
end_time = now + timedelta(days=days_ahead)
freebusy = service.freebusy().query(body={
"timeMin": now.isoformat() + "Z",
"timeMax": end_time.isoformat() + "Z",
"items": [{"id": calendar_id}]
}).execute()
busy_slots = freebusy["calendars"][calendar_id]["busy"]
return calculate_free_slots(busy_slots, now, end_time, slot_duration_min)
async def book_appointment(
calendar_id: str,
start_time: datetime,
client_name: str,
service_type: str
) -> str:
"""Create an event in the calendar"""
service = build('calendar', 'v3', credentials=get_credentials())
event = {
"summary": f"{service_type} — {client_name}",
"start": {"dateTime": start_time.isoformat(), "timeZone": "Europe/Moscow"},
"end": {"dateTime": (start_time + timedelta(minutes=30)).isoformat(),
"timeZone": "Europe/Moscow"},
"reminders": {"useDefault": True}
}
created = service.events().insert(calendarId=calendar_id, body=event).execute()
return created["id"]
For understanding free-form text we use dateparser and custom heuristics:
def parse_time_expression(text: str) -> datetime | None:
"""Parse expressions like 'tomorrow at 3', 'on Friday morning'"""
import dateparser
return dateparser.parse(
text,
languages=["ru"],
settings={
"PREFER_DATES_FROM": "future",
"TIMEZONE": "Europe/Moscow"
}
)
According to our data, the voice bot handles calls 5 times faster than an administrator, and booking errors are 10 times fewer.
Handling Ambiguous Requests
When a client says "tomorrow at half past two", the bot clarifies: "Does 13:30 work?"—and only after confirmation makes the booking. If the specialist is busy, the bot offers the nearest alternatives. In 90% of cases, booking is completed within 40 seconds. For this, we use a chain of calls: Whisper ASR (fine-tuned on medical vocabulary), GPT-4 NLU with few-shot prompts, and TTS with natural intonation. Recognition accuracy exceeds 95% even for complex surnames.
Profitability Comparison: Voice Bot vs Manual Scheduling
Manual scheduling requires hiring additional administrators during peak hours, increasing operating expenses by 20–30%. The voice bot works around the clock without breaks or sick days. Revenue growth from increased bookings averages 40%, and no-shows are reduced by 60% thanks to automatic SMS reminders. This appointment automation solution typically saves $5,000/month in staffing for a clinic with 10 operators. Below is a comparison of key metrics:
| Criteria | Manual Scheduling | Voice AI Bot |
|---|---|---|
| Availability | 8/5 | 24/7 |
| Booking errors | 5–10% | <1% |
| Average booking time | 3–5 min | 30–60 sec |
| Reminder | Only if not forgotten | Automatic SMS |
Process
- Analytics—study administrator load, typical scenarios, peak hours.
- Dialogue design—write script, tune NLU for your field specifics.
- Google Calendar integration—connect Google Calendar / 1C / Bitrix24, configure SMS gateway.
- Testing—run 100+ calls in simulator, adjust inaccuracies.
- Deployment—host in cloud or on your servers, launch.
Estimated Timelines
| System Type | Timeline |
|---|---|
| Single specialist, basic scenario | 2–3 weeks |
| Multi-specialist with analytics | 1–1.5 months |
| Complex integration with CRM + model fine-tuning | 2–3 months |
What's Included
- Voice bot module (ASR + NLU + TTS) under your brand.
- Integration with your calendar and SMS service.
- Dialogue scripts adapted to your services.
- Test runs and administrator training.
- 99.9% uptime guarantee, 1 month free support.
Typical Implementation Mistakes
- Ignoring context: bot doesn't remember previous conversation. We use LangChain with dialogue memory.
- Poor handling of pauses: a person may be silent for 5 seconds. We set a timeout of 8 seconds with a prompt.
- SMS spam filter: we send via short numbers or configure the domain.
Order Voice Bot Implementation
We evaluate your project in 1 day and send a commercial proposal with precise timelines. Contact us—we will show a dialogue example for your field and explain how the bot will increase revenue. Get a consultation from an engineer right now.
Additional keywords: Our voice assistant uses conversational AI and natural language processing to understand complex requests. This clinic chatbot is also an AI booking bot that fully automates appointment scheduling.







