langchain.js
    Preparing search index...

    Interface XAIResponsesOutputFileSearchCall

    File search call output item.

    interface XAIResponsesOutputFileSearchCall {
        id: string;
        queries?: string[];
        results?: XAIResponsesFileSearchResult[];
        status?: "in_progress" | "searching" | "completed" | "failed";
        type: "file_search_call";
    }
    Index

    Properties

    id: string

    The ID of the file search call.

    queries?: string[]

    The search queries used.

    The search results.

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

    The status of the file search.

    type: "file_search_call"