Member Junction
    Preparing search index...

    Interface RealtimeToolCall

    A tool-call request emitted by the model.

    interface RealtimeToolCall {
        Arguments: string;
        CallID: string;
        ToolName: string;
    }
    Index

    Properties

    Arguments: string

    The arguments for the call as a JSON string, exactly as the provider emitted them. Consumers parse this into the tool's expected parameter shape.

    CallID: string

    Provider-assigned identifier for this call, used to correlate the eventual tool result.

    ToolName: string

    The name of the tool the model is requesting to invoke.