Agogi AI: voice-first dental-tourism coordination, powered by Vocal Bridge
Published 14 August 2026
A voice concierge that plans, compares, and books a whole dental-treatment-abroad trip in a single conversation, built on Vocal Bridge's Voice for your app surface with Sabre for live travel inventory.
TL;DR Built by Srushti Madhure, Koti Reddi, Eshan Prakash, and Divya Bellur, Agogi AI turns a full treatment-abroad trip into one conversation. On Vocal Bridge's Voice for your app surface, with Sabre supplying live flight and hotel inventory, it lets a patient describe the trip once while the agent compares clinics, flights, and hotels, keeps one running itinerary, and confirms the booking out loud. It also handles disruptions by contacting the airline, hotel, and clinic when a flight is cancelled or an appointment is missed.
The problem: booking care abroad makes the patient the integrator
Patients travel abroad for implants, crowns, and full-mouth work that would cost several times more at home. But arranging the trip is a coordination nightmare. You vet clinics in a country you have never visited, confirm which documents you need, book flights and a hotel near the clinic, arrange local transport, and often bridge a language gap, all across time zones and a dozen vendors who do not talk to each other.
The moment any piece slips, the whole trip is at risk. A cancelled flight or a missed appointment cascades into a chain of calls to the airline, hotel, and clinic, usually in a second language, under time pressure. Today the patient is the integrator. Agogi AI's bet is that a voice agent is a better place for that state to live.
What Agogi AI built
Agogi AI is a voice concierge for the entire journey, not just the search step. A patient speaks their intent once, and the agent finds and compares trusted clinics, prepares required documents, pulls flight and hotel options through Sabre, arranges local transport, keeps a single itinerary, and can translate along the way.
What makes it more than a booking bot is the disruption side. When a flight is cancelled, an arrival is delayed, or an appointment is missed mid-trip, the agent reaches out to the airline, hotel, and clinic in parallel to confirm changes and reschedule. That is the piece of medical travel that has no good interface today, put behind a voice the patient can just talk to.
How Agogi AI uses Vocal Bridge
Agogi AI is built on Vocal Bridge's Voice for your app surface. The agent owns the workflow: clinic matching, document prep, Sabre queries, itinerary state, and the parallel outreach during a disruption. Vocal Bridge owns the real-time voice channel, the voice-to-voice model, barge-in, transcript streaming, and the client actions that let the agent's work show up on screen as it happens.
import { useAgentActions } from "@vocalbridgeai/react";
const { onAction, sendAction } = useAgentActions();
// agent -> app: a Sabre lookup returned options, render them
onAction("show_flight_options", ({ options }) => {
setFlights(options); // [{ carrier, price, stops, duration }]
});
// app -> agent: patient picked one, update the itinerary
const selectFlight = (id) => sendAction("select_flight", { id });
Illustrative. The production build carries richer itinerary state.
Because Vocal Bridge handles the conversation, the team skipped WebRTC transport, turn-taking, and the plumbing that keeps a long dialogue coherent. They wrote the travel logic and the Sabre integration and let VB carry the voice.
What's hard about voice here
Dead air while a tool runs. Pulling live inventory from Sabre takes real time, and silence in a call reads as a dropped connection. Streaming responses keep the patient grounded through the tool call instead of staring at nothing.
Keeping speech and the itinerary in sync. A trip is stateful. Dates, a chosen hotel, a selected flight, and a check-in time all have to agree, and the patient can change any by voice at any point. Vocal Bridge's bidirectional client actions keep the agent's decisions and the UI in lockstep.
Turn-taking under pressure. During a disruption a patient interrupts, corrects a date, or adds a constraint mid-sentence, and the agent has to yield cleanly. Barge-in and low-latency turn handling make that feel like a conversation, not a queue.
Agogi AI already demonstrates how one conversation can hold the clinic, travel, and disruption workflow together. The production path is to harden grounding, confirmation, and persistence around each consequential change, so a patient can always see what was requested, what succeeded, and what still needs attention. Because Vocal Bridge supplies the real-time voice layer, the team can focus that work on patient trust rather than audio transport.
Why voice for medical travel coordination
A dashboard asks the patient to be the systems integrator, reconciling the clinic's schedule with a flight time, a hotel check-in, and a document checklist, in a second language, across a dozen tabs. A conversation collapses that. You describe the trip once and the agent holds the state. And when a flight is cancelled at 2am in a country you do not know well, the interface you want is not a form. It is something you can talk to that already knows your whole itinerary.
Create your free account, deploy a voice agent, and integrate it into your app
No credit card required.
Sign Up Free →Full Developer Guide