interface ModeSelectorProps { value: 'solo' | 'standard' | 'deep' | undefined; onChange: (value: 'solo' | 'standard' | 'deep' | undefined) => void; disabled?: boolean; } const modes = [ { value: undefined, label: 'Auto', description: 'Let the system decide' }, { value: 'solo' as const, label: 'Solo', description: 'Single agent, fast' }, { value: 'standard' as const, label: 'Standard', description: 'Multi-agent pipeline' }, { value: 'deep' as const, label: 'Deep', description: 'Full analysis with verification' }, ]; export default function ModeSelector({ value, onChange, disabled }: ModeSelectorProps) { return (
{modes.map((mode) => ( ))}
); }