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§
§§§§§
readonly operation?: "read" | "search" | "deepResearch"§
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: {}
readonly research Query?: stringThe topic or question for the AI to research Type options: {"rows":2}
readonly resource?: "reader" | "research"Default: "reader"
readonly search Query?: string§readonly simplify?: booleanWhether to return a simplified version of the response instead of the raw data Default: true
readonly url?: stringThe URL to fetch content from
Default: "read"