(self, shared, prep_res, exec_res)
| 8 | return user_question |
| 9 | |
| 10 | def post(self, shared, prep_res, exec_res): |
| 11 | # Store the user's question |
| 12 | shared["question"] = exec_res |
| 13 | return "default" # Go to the next node |
| 14 | |
| 15 | class AnswerNode(Node): |
| 16 | def prep(self, shared): |
nothing calls this directly
no outgoing calls
no test coverage detected