Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
crossme
/
StoryGenius
like
0
Runtime error
App
Files
Files
Community
820b7d8
StoryGenius
/
app.py
crossme
Create app.py
820b7d8
over 1 year ago
raw
Copy download link
history
blame
Safe
159 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch(share=
True
)