langchain.js
    Preparing search index...

    Interface XAIResponsesOutputCodeInterpreterCall

    Code interpreter call output item.

    interface XAIResponsesOutputCodeInterpreterCall {
        code?: string;
        id: string;
        results?: XAIResponsesCodeInterpreterResult[];
        status?: "in_progress" | "completed" | "failed" | "interpreting";
        type: "code_interpreter_call";
    }
    Index

    Properties

    code?: string

    The code being executed.

    id: string

    The ID of the code interpreter call.

    The results of the code execution.

    status?: "in_progress" | "completed" | "failed" | "interpreting"

    The status of the code interpreter.

    type: "code_interpreter_call"