Skip to main content
VoiceTab component

Props

config
AgentConfig
required
config
updateConfig
<K extends keyof AgentConfig>( key: K, value: AgentConfig[K] ) => void
required
updateConfig
errors
Record<string, string>
required
errors

Usage

import { VoiceTab } from '@/components/VoiceTab';

export default function Example() {
  return (
    <VoiceTab config={config} updateConfig={updateConfig} errors={errors} />
  );
}