Remove a URL from the scraping pipeline.
(url: str)
| 37 | |
| 38 | @tool |
| 39 | def remove_url(url: str) -> Dict[str, Any]: |
| 40 | """Remove a URL from the scraping pipeline.""" |
| 41 | return { |
| 42 | "success": True, |
| 43 | "url": url, |
| 44 | "message": f"Successfully removed {url} from the pipeline" |
| 45 | } |
| 46 | |
| 47 | @tool |
| 48 | def validate_url(url: str) -> Dict[str, Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected