Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CatPtain
/
dify
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
dify
/
api
/
core
/
tools
/
utils
/
uuid_utils.py
CatPtain
Upload 1150 files
bcc0d8a
verified
about 2 months ago
raw
Copy download link
history
blame
contribute
delete
156 Bytes
import
uuid
def
is_valid_uuid
(
uuid_str:
str
) ->
bool
:
try
:
uuid.UUID(uuid_str)
return
True
except
Exception:
return
False