Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mohit5899
/
demogradio
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Mohit5899
commited on
12 days ago
Commit
c41fdfe
·
verified
·
1 Parent(s):
aca37a3
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!"
6
+
7
+
8
+
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
9
+
10
+
if __name__ == "__main__":
11
+
demo.launch()