Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 1.19 KB

README.md

File metadata and controls

34 lines (23 loc) · 1.19 KB

Real-Time Voice Inference - Daily Transport

Caution

This Repository and corresponding package has moved! Check out the latest, now part of a larger suite of transports at github.com/pipecat-ai/pipecat-client-web-transports and @pipecat-ai/daily-transport

Docs NPM Version

Daily transport package for use with realtime-ai.

How to use

Install relevant packages

npm install realtime-ai @daily-co/realtime-ai-daily

Import and pass transport to your RTVI client

import { RTVIClient } from "realtime-ai";
import { DailyTransport } from "@daily-co/realtime-ai-daily";

const rtviClient = new RTVIClient({
    transport: new DailyTransport(),
    // ... your RTVI config here
});

await rtviClient.connect();

Documentation

Please refer to the RTVI documentation here.