Workflow phases for the scraping pipeline.
| 8 | |
| 9 | |
| 10 | class WorkflowPhase(str, Enum): |
| 11 | """Workflow phases for the scraping pipeline.""" |
| 12 | INITIAL = "initial" |
| 13 | URL_COLLECTION = "url_collection" |
| 14 | URL_VALIDATION = "url_validation" |
| 15 | SCHEMA_DEFINITION = "schema_definition" |
| 16 | SCHEMA_VALIDATION = "schema_validation" |
| 17 | CODE_GENERATION = "code_generation" |
| 18 | READY_TO_EXECUTE = "ready_to_execute" |
| 19 | EXECUTING = "executing" |
| 20 | COMPLETED = "completed" |
| 21 | ERROR = "error" |
| 22 | |
| 23 | |
| 24 | class WorkflowTransition(BaseModel): |
no outgoing calls
no test coverage detected