Built-in tabs:
The component wires up internal hooks (useConversationManager, etc.) so consumers
just drop in <IntelligenceHub roomId="..." userId="..." /> and everything works.
import { IntelligenceHub } from '@hiyve/react-intelligence';
import { TranscriptViewer } from '@hiyve/react-capture';
<IntelligenceHub
roomId={roomName}
userId={userId}
onSend={handleAIQuery}
isOwner={isOwner}
intelligenceConfig={config}
onIntelligenceConfigChange={setConfig}
showConversationManager
renderCaptionsContent={() => (
<TranscriptViewer showTimestamps showSentiment autoScroll />
)}
/>
IntelligenceHub is a pre-built tabbed dashboard that composes multiple AI intelligence components into a single drop-in panel.