Need guidance again. 🥹 So my use case is that I am giving an interface for students to come and evaluate themselves by solving a past question paper on a topic. They are answering a question and if they answer wrongly I am sending the required data to the llm to generate a feedback -> this is pretty straightforward. I am directly calling llm.complete() endpoint.
The second use case is that at the end of the entire test - I want to generate a combined feedback. Of how he fared in the test. So I need to send the entire list of questions in the paper, his answers and the correct answers. To achieve the second use case should I create a node per combination of (question, answer, correct_answer) and apply tree_summarise OR just send the entire lists itself (does this even work).....!!?