do_uudecode.py 421 B

12345678910111213141516171819
  1. from evaluator import *
  2. DESCRIPTION = "Test if the model can successfully uudecode a given string."
  3. TAGS = ['explain']
  4. question = """
  5. uudecode this string:
  6. H,3DR-S<-"C(X,C<U#0HT.3(V-@T*-C`X,C8-"C(X,S8V#0HR,#<Q-0``
  7. """
  8. TestUUDecode = question >> LLMRun() >> (SubstringEvaluator("60826") & SubstringEvaluator("20715") & SubstringEvaluator("19277"))
  9. if __name__ == "__main__":
  10. print(run_test(TestUUDecode))