Member Junction
    Preparing search index...

    Interface MJAIPersonaVendorEntity_IAIPersonaVendorSettings

    Provider-specific configuration JSON for a persona-to-vendor binding.

    Stored as JSON in MJ: AI Persona Vendors.VendorSettings. CodeGen emits a typed VendorSettingsObject accessor on MJAIPersonaVendorEntity returning MJAIPersonaVendorEntity_IAIPersonaVendorSettings | null.

    Contains vendor-native voice/avatar tuning parameters (e.g., ElevenLabs voice settings) moved out of generic base classes into their concrete vendor binding.

    interface MJAIPersonaVendorEntity_IAIPersonaVendorSettings {
        similarityBoost?: number;
        speed?: number;
        stability?: number;
        style?: number;
        useSpeakerBoost?: boolean;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    similarityBoost?: number
    speed?: number
    stability?: number

    Vendor-native tuning, keyed by the vendor on AIPersonaVendor.VendorID. Typed members are those common enough to be worth compile-time checking.

    style?: number
    useSpeakerBoost?: boolean