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 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;
}
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 research Query?: string
readonly research Query?: string
The topic or question for the AI to research Type options: {"rows":2}
Default: "read"