Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
subatomicERROR
/
AutoSpace
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
subatomicERROR
commited on
15 days ago
Commit
6013b39
·
verified
·
1 Parent(s):
84d12a6
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
CHANGED
Viewed
@@ -0,0 +1,9 @@
1
+
# app.py
2
+
import gradio as gr
3
+
4
+
def generate(prompt):
5
+
# Do AI work here
6
+
return f"Generated for: {prompt}"
7
+
8
+
demo = gr.Interface(fn=generate, inputs="text", outputs="text")
9
+
demo.launch()