(text: str)
| 112 | |
| 113 | |
| 114 | def xsum_postprocess(text: str) -> str: |
| 115 | if text.startswith('Here'): |
| 116 | text = '\n\n'.join(text.split('\n\n')[1:]) |
| 117 | return Xsum_postprocess(text) |
| 118 | |
| 119 | |
| 120 | def yes_no_postprocess(text: str) -> str: |
nothing calls this directly
no test coverage detected