import { Button } from "./button/Button"; import { useRef } from "react"; type PlaygroundConnectProps = { accentColor: string; onConnectClicked: (url: string, roomToken: string) => void; }; export const PlaygroundConnect = ({ accentColor, onConnectClicked, }: PlaygroundConnectProps) => { const urlInput = useRef(null); const tokenInput = useRef(null); return (

Connect to playground

Connect LiveKit Agent Playground with a custom server using LiveKit Cloud or LiveKit Server.

Don’t have a URL or token? Try out our KITT example to see agents in action!
); };