DocsReact UIui-componentsAgentSwitcherProps
Package: @hexos/react-ui

Props for the AgentSwitcher component.

interface AgentSwitcherProps {
    agents: AgentInfo[];
    activeAgentId: string | null;
    isStreaming?: boolean;
    onAgentSelect?: (agentId: string) => void;
    allowManualSwitch?: boolean;
    variant?: 'compact' | 'expanded' | 'dropdown';
    className?: string;
}

agents

activeAgentId

string | null

isStreaming

boolean

onAgentSelect

(agentId: string) => void

allowManualSwitch

boolean

variant

'compact' | 'expanded' | 'dropdown'

className

string