(response)
| 5 | import os |
| 6 | |
| 7 | def judge_think_end_correct(response): |
| 8 | if response.split('</think>')[0].endswith('\n') is False: |
| 9 | return False |
| 10 | return True |
| 11 | |
| 12 | def remove_triple_backticks(text: str) -> str: |
| 13 | lang_pattern = re.compile(r"```(?:python|cpp|java)(?:[\s\S]*?)(?:```|$)", re.IGNORECASE) |
nothing calls this directly
no outgoing calls
no test coverage detected