joshuarauh commited on
Commit
dcd5a84
·
verified ·
1 Parent(s): 4b72003

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -936,7 +936,7 @@ j. **Concluding and Intuitive Explanations**
936
  SYMPY_CONFIRMED = "Inconclusive"
937
  response_text = f"{response_text}\n\nSymPy Verification Results:\n```\n{sympy_output}\n```\n\nVerification Analysis:\n{verification_text}"
938
  else:
939
- resolution_text, has_discrepancy, revised_solution, SYMPY_CONFIRMED = check_and_resolve_discrepancy(original_response, sympy_output)
940
  response_text = f"{response_text}\n\nSymPy Verification Results:\n```\n{sympy_output}\n```\n\nVerification Analysis:\n{resolution_text}"
941
 
942
  if has_discrepancy and revised_solution:
 
936
  SYMPY_CONFIRMED = "Inconclusive"
937
  response_text = f"{response_text}\n\nSymPy Verification Results:\n```\n{sympy_output}\n```\n\nVerification Analysis:\n{verification_text}"
938
  else:
939
+ resolution_text, has_discrepancy, revised_solution, SYMPY_CONFIRMED = check_and_resolve_discrepancy(response_text, sympy_output)
940
  response_text = f"{response_text}\n\nSymPy Verification Results:\n```\n{sympy_output}\n```\n\nVerification Analysis:\n{resolution_text}"
941
 
942
  if has_discrepancy and revised_solution: