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

Class Branch

src/workflow/callpath.py:28–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26
27@dataclass
28class Branch:
29 path: CallKey = ()
30 _counter: int = 0
31
32 def next_slot(self) -> int:
33 slot = self._counter
34 self._counter += 1
35 return slot
36
37
38_current: contextvars.ContextVar[Branch] = contextvars.ContextVar("workflow_branch")

Callers 1

use_branchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected