AutoBE
    Preparing search index...

    Interface IAutoBePlaygroundConfig

    Global configuration for the playground application.

    Stored as a singleton record in the database. Provides default values for session creation (locale, timezone) and frontend form pre-fill (default vendor and model).

    Samchon

    interface IAutoBePlaygroundConfig {
        default_model: string | null;
        default_vendor_id: string & Format<"uuid"> | null;
        locale: string;
        timezone: string;
    }
    Index

    Properties

    default_model: string | null

    Default model identifier for the frontend to pre-fill.

    Not used server-side for session creation — model is still required in ICreate.IProps.

    default_vendor_id: string & Format<"uuid"> | null

    Default vendor ID for the frontend to pre-fill the session creation form.

    Not used server-side for session creation — vendor_id is still required in ICreate.IProps. This is purely a frontend convenience.

    locale: string

    Default locale for new sessions.

    Used as the server-side fallback when a session is created without an explicit locale.

    "en-US"
    
    timezone: string

    Default IANA timezone identifier for new sessions.

    Used as the server-side fallback when a session is created without an explicit timezone.

    "UTC"