Blair Yang commited on
Commit
998ad0f
1 Parent(s): 1a73201
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -43,6 +43,8 @@ def evaluate_guess(reasoning, correctness, confidence, topic):
43
  # Here your logic will go to evaluate the guess
44
  # Placeholder for the correct logic to determine the correct answer
45
  correct_answer = 'Correct' if info_dict['correctness'] else 'Incorrect'
 
 
46
  evaluation_response = "Correct" if correctness == correct_answer else "Incorrect"
47
 
48
  # Assuming info_dict is updated by sample_and_display function
 
43
  # Here your logic will go to evaluate the guess
44
  # Placeholder for the correct logic to determine the correct answer
45
  correct_answer = 'Correct' if info_dict['correctness'] else 'Incorrect'
46
+ print(correctness)
47
+ print(correct_answer)
48
  evaluation_response = "Correct" if correctness == correct_answer else "Incorrect"
49
 
50
  # Assuming info_dict is updated by sample_and_display function