MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / WorkflowResult

Class WorkflowResult

src/workflow/runtime.py:42–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40
41@dataclass
42class WorkflowResult:
43 meta: WorkflowMeta
44 value: Any = None
45 error: Optional[str] = None
46 progress: Optional[WorkflowProgress] = None
47 journal: dict[CallKey, JournalRecord] = field(default_factory=dict)
48
49 @property
50 def ok(self) -> bool:
51 return self.error is None
52
53
54class WorkflowRun:

Callers 1

run_workflowFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected