> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rime.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# LiveKit

> Use Rime TTS with LiveKit Agents for real-time voice agents: plugin setup and streaming configuration.

export const IntegrationHeader = ({partnerLogo, partnerAlt = "Partner logo", rimeLogo = "/images/rime_logo_new.svg", rimeAlt = "Rime logo", rimeHeight = "40px", partnerHeight = "40px"}) => <div style={{
  width: "100%",
  display: "flex",
  flexDirection: "row",
  alignItems: "center",
  justifyContent: "center",
  gap: "12px",
  flexWrap: "nowrap",
  marginBottom: "24px"
}}>
    <img src={rimeLogo} style={{
  height: rimeHeight,
  display: "inline-block"
}} alt={rimeAlt} />
    <span style={{
  fontSize: "24px",
  color: "#666",
  display: "inline-block"
}}>
      +
    </span>
    <img src={partnerLogo} style={{
  height: partnerHeight,
  display: "inline-block"
}} alt={partnerAlt} />
  </div>;

<IntegrationHeader partnerLogo="/images/livekit.jpg" partnerAlt="LiveKit logo" />

Use Rime as the TTS provider in [LiveKit Agents](https://livekit.io/) through LiveKit's Rime plugin. LiveKit owns real-time transport and orchestration while Rime streams the agent's speech.

Build a complete agent with the [LiveKit quickstart](/docs/quickstart-livekit), or use [LiveKit's Rime integration reference](https://docs.livekit.io/agents/integrations/rime/) for plugin configuration.
