Input schema for SearchScraper tool.
| 29 | |
| 30 | |
| 31 | class SearchScraperInput(BaseModel): |
| 32 | """Input schema for SearchScraper tool.""" |
| 33 | search_query: str = Field(description="The search query to find relevant websites") |
| 34 | max_results: int = Field(default=10, description="Maximum number of results to return") |
| 35 | |
| 36 | |
| 37 | class MarkdownifyInput(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected