| 60 | nodeIds: List[str] # Node IDs contained in this component |
| 61 | |
| 62 | class 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 | |
| 69 | class WorkflowGraph(BaseModel): |
| 70 | nodes: List[GraphNode] |
no outgoing calls
no test coverage detected