1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from evaluator import * DESCRIPTION = "Test if the model can understand a vague error for an emacs lisp question." TAGS = ['explain'] question = """ In emacs lisp how do I silence "Process python-process finished" """ TestLispSilencePython = question >> LLMRun() >> SubstringEvaluator("set-process-sentinel") if __name__ == "__main__": print(run_test(TestLispSilencePython)) |