WebSearch

extract

Extracts specific information from a web page based on a prompt. Args: - url: The complete URL of the web page to extract information from - prompt: Instructions specifying what information to extract from the page - enabaleWebSearch: Whether to allow web searches to supplement the extraction - showSources: Whether to include source references in the response

Returns: - Extracted information from the web page based on the prompt

Input Schema

NameRequiredDescriptionDefault
enabaleWebSearchYes
promptYes
showSourcesYes
urlYes

Input Schema (JSON Schema)

{ "properties": { "enabaleWebSearch": { "title": "Enabalewebsearch", "type": "boolean" }, "prompt": { "title": "Prompt", "type": "string" }, "showSources": { "title": "Showsources", "type": "boolean" }, "url": { "items": { "type": "string" }, "title": "Url", "type": "array" } }, "required": [ "url", "prompt", "enabaleWebSearch", "showSources" ], "title": "extractArguments", "type": "object" }

You must be authenticated.

Other Tools