code-generation / utils.py
teamaMohamed115's picture
Create utils.py
f3d50f7 verified
raw
history blame contribute delete
209 Bytes
# Small helper utilities in case you want to expand the Space
def sanitize_prompt(text: str) -> str:
"""Basic sanitization: remove non-printable chars"""
return ''.join(ch for ch in text if ch.isprintable())