MCPcopy Create free account
hub / github.com/codag-megalith/codag-visualizer / WorkflowMetadata

Class WorkflowMetadata

backend/models.py:62–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

60 nodeIds: List[str] # Node IDs contained in this component
61
62class WorkflowMetadata(BaseModel):
63 id: str # "workflow_1", "workflow_2", etc.
64 name: str # Descriptive name (e.g., "Document Analysis Pipeline")
65 description: Optional[str] = None
66 nodeIds: List[str] # List of node IDs that belong to this workflow
67 components: List[ComponentMetadata] = [] # Sub-components within workflow
68
69class WorkflowGraph(BaseModel):
70 nodes: List[GraphNode]

Callers 1

parse_mermaid_responseFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected