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

Class WorkflowTransition

backend/app/models/workflow.py:24–30  ·  view source on GitHub ↗

Represents a transition between workflow phases.

Source from the content-addressed store, hash-verified

22
23
24class WorkflowTransition(BaseModel):
25 """Represents a transition between workflow phases."""
26 from_phase: WorkflowPhase
27 to_phase: WorkflowPhase
28 timestamp: datetime = Field(default_factory=datetime.utcnow)
29 reason: Optional[str] = None
30 triggered_by: str = "system" # system, user, or agent
31
32
33class URLInfo(BaseModel):

Callers 2

add_transitionMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected