which_package_sbox.py 361 B

1234567891011121314
  1. from evaluator import *
  2. DESCRIPTION = "This test case checks if the model knows what latex package to import for the Sbox environment to work."
  3. TAGS = ['explain']
  4. question = """
  5. What latex package has the Sbox env?
  6. """
  7. TestWhereIsSbox = question >> LLMRun() >> SubstringEvaluator("fancybox")
  8. if __name__ == "__main__":
  9. print(run_test(TestWhereIsSbox))