Input schema for SmartScraper tool.
| 15 | |
| 16 | |
| 17 | class SmartScraperInput(BaseModel): |
| 18 | """Input schema for SmartScraper tool.""" |
| 19 | website_url: str = Field(description="The URL of the website to scrape") |
| 20 | user_prompt: str = Field(description="Natural language prompt describing what data to extract") |
| 21 | |
| 22 | |
| 23 | class SmartCrawlerInput(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected