| 90 | description: str = Field(description="Brief description of what the website offers") |
| 91 | |
| 92 | class SearchResults(BaseModel): |
| 93 | websites: List[WebsiteInfo] = Field(description="List of relevant websites") |
| 94 | |
| 95 | # Use searchscraper to find information about the topic |
| 96 | search_prompt = f"Find the top {max_results} most relevant websites and their URLs for: {query}. Return a list of websites with their URLs and descriptions." |
nothing calls this directly
no outgoing calls
no test coverage detected