MCPcopy Create free account
hub / github.com/ScrapeGraphAI/scrapecraft / WebsiteInfo

Class WebsiteInfo

backend/app/services/scrapegraph.py:87–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected