Coming Soon

Add AI Voice to
Your App in Minutes

Real-time voice conversations for any application. Connect your LLM, drop in our SDK, and you're live.

Activity Log

0 events
Waiting for activity...
Drop-in SDKAny LLM ProviderReal-time Streaming

Built for Developers

Voice infrastructure that works with your existing stack.

Works With Any LLM

Use OpenAI, Anthropic, or your own model. We handle voice, you handle the intelligence.

Simple Integration

One webhook receives transcripts, responds with text. That's the entire API.

How It Works

Two ways to integrate. Pick what fits your stack.

Built-in AI support

Zero backend code. Full-featured voice AI out of the box.

chans
Voice, AI, RAG, Memory, Tools
You own this
System Prompt
Knowledge Base
Conversation Memory
MCP Tools
App.tsx
import { useVoiceAgent } from "@ai-chans/sdk-react"
function App() {
// connect() requests mic access
const { state, connect, disconnect } = useVoiceAgent({
agentToken: "agt_xxx"
})
return (
<button onClick={state === "idle" ? connect : disconnect}>
{state === "idle" ? "Start Call" : "End Call"}
</button>
)
}