(s: GraphStateType)
| 109 | |
| 110 | // --- Investment-debate loop (Bull ⇄ Bear → Research Manager) --- |
| 111 | const debateCond = (s: GraphStateType) => |
| 112 | shouldContinueDebate(s, config.maxDebateRounds); |
| 113 | graph.addConditionalEdges("Bull Researcher", debateCond, { |
| 114 | "Research Manager": "Research Manager", |
| 115 | "Bear Researcher": "Bear Researcher", |
nothing calls this directly
no test coverage detected