(self, *args)
| 75 | return False |
| 76 | |
| 77 | def parse_command(self, *args) -> tuple: |
| 78 | sum_text = extract_prompt(args[0], "SUMMARY").split("\n") |
| 79 | full_text = extract_prompt(args[0], "FULL_TEXT").split("\n") |
| 80 | if len(sum_text) == 0 and len(full_text) == 0: return False, None |
| 81 | if len(sum_text) > 0: return True, ("SUMMARY", sum_text,) |
| 82 | if len(full_text) > 0: return True, ("FULL_TEXT", sum_text,) |
| 83 | |
| 84 | |
| 85 | """ |
no test coverage detected