Member Junction
    Preparing search index...

    Interface MJAIPromptEntity_RealtimeReasoningSettings

    Reasoning-plane settings for realtime models — dual delegation configuration. Absent defaults to 'local'.

    interface MJAIPromptEntity_RealtimeReasoningSettings {
        Plane?: "local" | "remote";
        Remote?: {
            Effort?: "low" | "high" | "none" | "minimal" | "medium" | "xhigh";
            Kind?: "model" | "hostedAgent";
            MaxOutputTokens?: number;
            Ref?: string;
        };
    }
    Index

    Properties

    Properties

    Plane?: "local" | "remote"

    Which plane handles reasoning:

    • 'local' — application/agent loop (default).
    • 'remote' — delegated to remote model or hosted agent.
    Remote?: {
        Effort?: "low" | "high" | "none" | "minimal" | "medium" | "xhigh";
        Kind?: "model" | "hostedAgent";
        MaxOutputTokens?: number;
        Ref?: string;
    }

    Remote reasoning target configuration.