Member Junction
    Preparing search index...

    Interface RealtimeDirectActionsConfig

    Direct action invocation configuration for a Realtime co-agent.

    Direct actions allow the realtime model to directly invoke select actions belonging to the target agent, bypassing full multi-turn agent delegation for low-latency voice responses.

    Security & defaults:

    • Default is strictly closed: absent or enabled !== true ⇒ 0 direct actions exposed.
    • Allowed actions must be explicitly enumerated in actionNames, or specified as ['*'] to allow all.
    • '*' is never defaulted; it must be explicitly authored.
    interface RealtimeDirectActionsConfig {
        actionNames?: string[];
        enabled: boolean;
        timeoutMs?: number;
    }
    Index

    Properties

    actionNames?: string[]

    Allowed action names. Can be specific action names or ['*'] to allow all actions assigned to the agent.

    enabled: boolean

    Whether direct action invocation is enabled for this agent. Default: false.

    timeoutMs?: number

    Timeout for direct action execution in milliseconds. Defaults to 10,000 ms (10 seconds) if omitted.