@conciergus/chat - v0.3.1
    Preparing search index...

    Interface ConciergusModelSwitcherProps

    Props for the ConciergusModelSwitcher component

    interface ConciergusModelSwitcherProps {
        modelManager?: ModelManager;
        currentModel?: string;
        onModelChange?: (modelId: string) => void;
        availableModels?: string[];
        showPerformanceIndicators?: boolean;
        showDescriptions?: boolean;
        className?: string;
        compact?: boolean;
        disabled?: boolean;
        placeholder?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Additional props

    Index

    Properties

    modelManager?: ModelManager

    Model manager instance

    currentModel?: string

    Current selected model ID

    onModelChange?: (modelId: string) => void

    Callback when model is changed

    availableModels?: string[]

    Available models list (fallback if modelManager unavailable)

    showPerformanceIndicators?: boolean

    Show performance indicators

    showDescriptions?: boolean

    Show model descriptions

    className?: string

    Custom CSS class

    compact?: boolean

    Compact layout

    disabled?: boolean

    Disabled state

    placeholder?: string

    Custom placeholder text