emacs_lisp_silence_cmd.py 385 B

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