langchain.js
    Preparing search index...

    Interface XAIResponsesFunctionToolCall

    Function tool call from a previous response.

    interface XAIResponsesFunctionToolCall {
        arguments: string;
        call_id?: string;
        id: string;
        name: string;
        type: "function_call";
    }
    Index

    Properties

    arguments: string

    The arguments to the function as a JSON string.

    call_id?: string

    The ID of the tool call (alias).

    id: string

    The ID of the tool call.

    name: string

    The name of the function.

    type: "function_call"