# Livekit

> Open-source realtime infrastructure — a WebRTC server plus the LiveKit Agents framework for production voice AI, with turn detection, telephony, and cloud.

LiveKit is the open-source realtime stack voice AI standardized on: an Apache-2.0 WebRTC server plus the LiveKit Agents framework (Python/Node) wiring STT→LLM→TTS or speech-to-speech models, with an open multilingual turn-detection model, full telephony (SIP, DTMF, transfers), and LiveKit Cloud as the managed network. Self-host free; cloud freemium with metered minutes.

Website: https://livekit.com

LiveKit became voice AI's load-bearing infrastructure the unglamorous way: by being the open-source WebRTC stack that worked, then building the agent layer the moment voice agents needed one. The credential says it all — **ChatGPT's Voice Mode runs over LiveKit**, per LiveKit's own announcements.

## Highlights

- **The WebRTC core** — an Apache-2.0 SFU for low-latency audio/video at scale; self-host anywhere, in Go.
- **LiveKit Agents** — the framework (Python and Node) for production voice agents: pluggable STT/LLM/TTS pipelines *or* realtime speech-to-speech models, with interruption handling built in.
- **Open turn detection** — a multilingual semantic turn-detection model (13 languages, ~25ms CPU inference) — the hardest part of natural conversation, open-sourced.
- **Telephony 1.0** — SIP, DTMF, transfers, thousands of concurrent calls: the phone-system half most stacks bolt on late.
- **LiveKit Inference** — one interface routing STT/LLM/TTS across providers ([Cartesia](/tools/cartesia), [Deepgram](/tools/deepgram), and friends plug in).
- **Cloud when you want it** — serverless agent deployment, observability (session replays, traces), a real free tier, metered minutes beyond.

## In an AI-assisted workflow

```bash
pip install "livekit-agents[openai,silero,deepgram,cartesia,turn-detector]"
# define an Agent with your STT/LLM/TTS mix (or a realtime model) and deploy —
# self-hosted server or LiveKit Cloud
```

It's the substrate under the [voice-agent pipeline](/guides/voice/build-a-voice-agent): you bring the models, LiveKit owns transport, turns, and telephony — the parts that make demos fall over in production.

> [!NOTE]
> Use livekit.com (the .io domain redirects), and pin agent-framework versions — the 1.0 redesign retired pre-1.0 patterns and the cadence stays brisk. Self-hosting is genuinely free but re-creates what Cloud meters (TURN, scaling, orchestration).

## Good to know

Apache-2.0 throughout (~19k/11k stars across server/agents), with a $45M Series B (April 2025) and a **$100M Series C at a $1B valuation** (Index Ventures, January 2026) — agents downloads topped a million a month. The build-vs-buy line against [Vapi](/tools/vapi) and the OSS-pipeline comparison with [Pipecat](/tools/pipecat) are drawn in [Realtime Voice Agents](/guides/voice/realtime-voice-apis).

---

_Source: https://agentscamp.com/tools/livekit — Tool on AgentsCamp._
