Input schema for Markdownify tool.
| 35 | |
| 36 | |
| 37 | class MarkdownifyInput(BaseModel): |
| 38 | """Input schema for Markdownify tool.""" |
| 39 | website_url: str = Field(description="The URL of the website to convert to markdown") |
| 40 | |
| 41 | |
| 42 | @tool("smart_scraper", args_schema=SmartScraperInput) |
nothing calls this directly
no outgoing calls
no test coverage detected