LiveVoiceCall

import { LiveVoiceCall } from '@hanzo/ui/agents'

No examples yet.

Types

export interface LiveVoiceCallProps {
title?: string
status?: 'connecting' | 'connected' | 'speaking' | 'listening' | 'ended'
onEndCall?: () => void
onToggleMute?: (muted: boolean) => void
isMuted?: boolean
transcripts?: Array<{ speaker: string; text: string; time: string }>
className?: string
style?: React.CSSProperties
}

Exports

LiveVoiceCalltype LiveVoiceCallProps