Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DeMaking
/
decision-helper-bot
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
DeMaking
commited on
16 days ago
Commit
357295a
·
verified
·
1 Parent(s):
95070e8
Create utils.py
Browse files
Files changed (1)
hide
show
utils.py
+5
-0
utils.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
def clean_text(text: str) -> str:
2
+
"""
3
+
Clean and normalize the input text.
4
+
"""
5
+
return text.strip()