Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Corin1998
/
RAGWeatherStaytimeTripPlanner
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
RAGWeatherStaytimeTripPlanner
/
rag
/
util_text.py
Corin1998
Create util_text.py
6689da3
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
101 Bytes
import
re
def
clean_text
(
t:
str
) ->
str
:
t = re.sub(
r"\s+"
,
" "
, t
or
" "
).strip()
return
t