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

Class WorkflowPhase

backend/app/models/workflow.py:10–21  ·  view source on GitHub ↗

Workflow phases for the scraping pipeline.

Source from the content-addressed store, hash-verified

8
9
10class 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
24class WorkflowTransition(BaseModel):

Calls

no outgoing calls

Tested by

no test coverage detected