Information about a URL in the pipeline.
| 31 | |
| 32 | |
| 33 | class 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 | |
| 44 | class SchemaField(BaseModel): |
no outgoing calls
no test coverage detected