langchain.js
    Preparing search index...

    Interface XAIResponsesFunctionToolOutput

    Function tool call output to provide results back to the model.

    interface XAIResponsesFunctionToolOutput {
        call_id: string;
        output: string;
        type: "function_call_output";
    }
    Index

    Properties

    Properties

    call_id: string

    The ID of the tool call this output is for.

    output: string

    The output/result of the function call.

    type: "function_call_output"