extract_with_llm
Extract specific information from webpages using AI by asking questions about content, such as summarizing key points or finding product details.
Instructions
[STATELESS] Ask questions about webpage content using AI. Returns natural language answers. Crawls fresh each time. For dynamic content or sessions, use crawl with session_id first.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | Your question about the webpage content. Examples: "What is the main topic?", "List all product prices", "Summarize the key points", "What contact information is available?" | |
url | Yes | The URL to extract data from |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Your question about the webpage content. Examples: \"What is the main topic?\", \"List all product prices\", \"Summarize the key points\", \"What contact information is available?\"",
"type": "string"
},
"url": {
"description": "The URL to extract data from",
"type": "string"
}
},
"required": [
"url",
"query"
],
"type": "object"
}