Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Saumya810
/
minima
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
minima
/
app.py
Saumya Sharma
changes for testing
c92c13e
8 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
205 Bytes
import
gradio
as
gr
print
(
"Hello, Gradio!"
)
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
demo.launch()