Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
PlaceReporter99
/
test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
PlaceReporter99
commited on
Sep 4, 2023
Commit
a73b730
·
1 Parent(s):
8fb472d
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-0
app.py
ADDED
Viewed
@@ -0,0 +1,3 @@
1
+
import gradio as gr
2
+
import random
3
+
gr.Interface(fn=lambda x:''.join(random.sample(x, len(x))), inputs="text", outputs="text")