(self, shared)
| 14 | |
| 15 | class AnswerNode(Node): |
| 16 | def prep(self, shared): |
| 17 | # Read question from shared |
| 18 | return shared["question"] |
| 19 | |
| 20 | def exec(self, question): |
| 21 | # Call LLM to get the answer |
nothing calls this directly
no outgoing calls
no test coverage detected