(self, question)
| 18 | return shared["question"] |
| 19 | |
| 20 | def exec(self, question): |
| 21 | # Call LLM to get the answer |
| 22 | return call_llm(question) |
| 23 | |
| 24 | def post(self, shared, prep_res, exec_res): |
| 25 | # Store the answer in shared |
nothing calls this directly
no test coverage detected