Live demo
Try Floo voice AI right now
No signup. No download. Click the button, allow your mic, and have a real conversation. Same agent you'd ship on your site.
Sub-500ms latency20+ languagesDrop-in SDK
Ready when you are
Talk to Floo, live
Click the button, allow mic access, and start speaking. Floo replies in real time.
Demo runs on Floo's shared infrastructure. Latency varies with your network and the LiveKit region nearest you.
Add to your site
One npm install. Live voice AI on your site.
Drop the Floo SDK on any page. Pass an agent ID and you're done. Works in React, Vue, Svelte, vanilla - anywhere JavaScript runs.
Terminal
npm install @flooai/sdk
import { FlooCall } from "@flooai/sdk";
const call = new FlooCall({
agentId: "agt_abc123",
variables: { customer_name: "Alex" },
});
call.onTranscript((t) => console.log(t));
await call.start();