| 85 | from typing import List |
| 86 | |
| 87 | class WebsiteInfo(BaseModel): |
| 88 | name: str = Field(description="Name of the website") |
| 89 | url: str = Field(description="Full URL of the website") |
| 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") |
nothing calls this directly
no outgoing calls
no test coverage detected