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

Class URLInfo

backend/app/models/workflow.py:33–41  ·  view source on GitHub ↗

Information about a URL in the pipeline.

Source from the content-addressed store, hash-verified

31
32
33class URLInfo(BaseModel):
34 """Information about a URL in the pipeline."""
35 url: str
36 description: str = ""
37 relevance: str = "medium" # high, medium, low
38 validated: bool = False
39 validation_reason: Optional[str] = None
40 added_at: datetime = Field(default_factory=datetime.utcnow)
41 added_by: str = "agent" # agent or user
42
43
44class SchemaField(BaseModel):

Callers 4

update_urlsMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected