> ## 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.

# Daily

> Use Rime TTS with Daily's real-time video and voice platform via Pipecat.

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/daily.png" partnerAlt="Daily logo" />

[Daily](https://www.daily.co/) is a real-time video and voice platform built on WebRTC, and the creator of [Pipecat](https://github.com/pipecat-ai/pipecat), the open-source framework for building voice agents.

Rime plugs into Daily-based applications as the TTS stage of a Pipecat pipeline. For the full walkthrough — building a working voice agent in Python with Rime synthesis — see the Pipecat guide:

<Card title="Build a voice agent with Pipecat + Rime" icon="rocket" href="/docs/pipecat">
  Step-by-step Python guide: install, pipeline setup, Rime TTS configuration, and a browser-based agent you can talk to.
</Card>

The guide runs locally over Pipecat's built-in WebRTC transport. For production deployments, swap in Daily's hosted rooms as the transport — see [Pipecat's transport documentation](https://docs.pipecat.ai/server/services/transport/daily) for configuration details.
