Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Severian
/
dify
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2a53bd2
dify
/
api
/
core
/
tools
/
utils
/
uuid_utils.py
Severian
initial commit
a8b3f00
3 months ago
raw
Copy download link
history
blame
Safe
156 Bytes
import
uuid
def
is_valid_uuid
(
uuid_str:
str
) ->
bool
:
try
:
uuid.UUID(uuid_str)
return
True
except
Exception:
return
False