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

Class WorkflowPhase

backend/app/agents/langgraph_agent.py:21–32  ·  view source on GitHub ↗

Workflow phases for the scraping pipeline.

Source from the content-addressed store, hash-verified

19
20
21class WorkflowPhase(str, Enum):
22 """Workflow phases for the scraping pipeline."""
23 INITIAL = "initial"
24 URL_COLLECTION = "url_collection"
25 URL_VALIDATION = "url_validation"
26 SCHEMA_DEFINITION = "schema_definition"
27 SCHEMA_VALIDATION = "schema_validation"
28 CODE_GENERATION = "code_generation"
29 READY_TO_EXECUTE = "ready_to_execute"
30 EXECUTING = "executing"
31 COMPLETED = "completed"
32 ERROR = "error"
33
34
35class URLInfo(BaseModel):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected