Hiyve Components - v1.0.0
    Preparing search index...
    • IntelligenceSettings provides a configuration panel for Intelligence mode options.

      Parameters

      Returns ReactElement

      The rendered IntelligenceSettings component

      This component allows users to customize what features are enabled when Intelligence mode is started. It can be included in a settings panel or displayed inline.

      Configurable Options:

      • Auto-compose: Compose individual tracks into a single video after recording
      • Transcribe: Enable real-time transcription during recording
      • Post-meeting summary: Generate AI-powered summary after meeting ends
      • AI query access: Allow AI to access transcriptions for answering questions
      • Auto-start mood: Automatically start mood analysis with Intelligence mode

      Dependencies:

      • Post-meeting summary requires Transcribe to be enabled
      • AI query access requires Transcribe to be enabled

      Basic usage:

      import { IntelligenceSettings, defaultIntelligenceConfig } from '@hiyve/react-intelligence';

      function SettingsPanel() {
      const [config, setConfig] = useState(defaultIntelligenceConfig);

      return (
      <IntelligenceSettings
      config={config}
      onChange={setConfig}
      />
      );
      }

      IntelligenceConfig for the configuration interface