brd-audit-streamlit / utils /preprocess.py
Pachinee's picture
Create preprocess.py
867e2ea verified
raw
history blame contribute delete
126 Bytes
import re
def preprocess_text(text: str) -> str:
text = text.strip()
text = re.sub(r"\s+", " ", text)
return text