(state: PipelineState)
| 144 | |
| 145 | |
| 146 | def conditional_edge(state: PipelineState) -> Literal["True", "False"]: |
| 147 | if state["condition"] in ["True", "true", True]: |
| 148 | return "True" |
| 149 | else: |
| 150 | return "False" |
| 151 | |
| 152 | def build_subgraph(node_map: Dict[str, NodeData], llm) -> StateGraph: |
| 153 | # Define the state machine |
nothing calls this directly
no outgoing calls
no test coverage detected