(data)
| 134 | return data |
| 135 | |
| 136 | def should_continue(data): |
| 137 | if isinstance(data['agent_outcome'], AgentFinish): |
| 138 | return "exit" |
| 139 | else: |
| 140 | return "continue" |
| 141 | |
| 142 | workflow = Graph() |
| 143 | workflow.add_node("agent", agent) |
nothing calls this directly
no outgoing calls
no test coverage detected