(text: str)
| 93 | Remove double spaces in the prompt and generations to standardize spacing. |
| 94 | """ |
| 95 | def clean(text: str) -> str: |
| 96 | return re.sub(r'[ \t]{2,}', ' ', text) |
| 97 | |
| 98 | # Clean the prompt |
| 99 | for turn in self.prompt: |
nothing calls this directly
no outgoing calls
no test coverage detected