MCPcopy Create free account
hub / github.com/ScaleML/AgentSPEX / Workflow

Class Workflow

scripts/dashboard.py:124–139  ·  view source on GitHub ↗

Represents the entire workflow.

Source from the content-addressed store, hash-verified

122
123@dataclass
124class Workflow:
125 """Represents the entire workflow."""
126
127 task_name: str = ""
128 goal: str = ""
129 model: str = ""
130 steps: List[Step] = field(default_factory=list)
131 total_tokens: int = 0
132 prompt_tokens: int = 0
133 completion_tokens: int = 0
134 reasoning_tokens: int = 0
135 cost: float = 0.0
136 status: str = "running"
137 start_time: str = ""
138 end_time: str = ""
139 raw_lines: List[str] = field(default_factory=list)
140
141
142class LogParser:

Callers 1

__init__Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected