langchain.js
    Preparing search index...

    Interface XAIResponsesOutputFunctionCall

    Function call output item.

    interface XAIResponsesOutputFunctionCall {
        arguments: string;
        call_id?: string;
        id: string;
        name: string;
        status?: XAIResponsesStatus;
        type: "function_call";
    }
    Index

    Properties

    arguments: string

    The arguments to the function as a JSON string.

    call_id?: string

    The ID of the function call (alias).

    id: string

    The ID of the function call.

    name: string

    The name of the function being called.

    The status of the function call.

    type: "function_call"