Interface JinaAiNodeParameters

Source
interface JinaAiNodeParameters {
    operation?: "read" | "search" | "deepResearch";
    options?:
        | {
            enableImageCaptioning?: boolean;
            excludeSelector?: string;
            outputFormat?: | ""
            | "screenshot"
            | "text"
            | "html"
            | "markdown";
            targetSelector?: string;
            waitForSelector?: string;
        }
        | {
            outputFormat?: | ""
            | "screenshot"
            | "text"
            | "html"
            | "markdown";
            pageNumber?: number;
            siteFilter?: string;
        }
        | {
            excludeSources?: string;
            maxReturnedSources?: number;
            prioritizeSources?: string;
            siteFilter?: string;
        };
    researchQuery?: string;
    resource?: "reader"
    | "research";
    searchQuery?: string;
    simplify?: boolean;
    url?: string;
}

Properties§

Source§

readonly operation?: "read" | "search" | "deepResearch"

Default: "read"

Source§

readonly options?:
    | {
        enableImageCaptioning?: boolean;
        excludeSelector?: string;
        outputFormat?: | ""
        | "screenshot"
        | "text"
        | "html"
        | "markdown";
        targetSelector?: string;
        waitForSelector?: string;
    }
    | {
        outputFormat?: | ""
        | "screenshot"
        | "text"
        | "html"
        | "markdown";
        pageNumber?: number;
        siteFilter?: string;
    }
    | {
        excludeSources?: string;
        maxReturnedSources?: number;
        prioritizeSources?: string;
        siteFilter?: string;
    }

Default: {}

Source§

readonly researchQuery?: string

The topic or question for the AI to research Type options: {"rows":2}

Source§

readonly resource?: "reader" | "research"

Default: "reader"

Source§

readonly searchQuery?: string

Source§

readonly simplify?: boolean

Whether to return a simplified version of the response instead of the raw data Default: true

Source§

readonly url?: string

The URL to fetch content from