PelokBal commited on
Commit
2bd856d
·
1 Parent(s): cf0ed45

Oops, add app.py now

Browse files
Files changed (2) hide show
  1. .vscode/settings.json +6 -0
  2. app.py +7 -0
.vscode/settings.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "[python]": {
3
+ "editor.defaultFormatter": "ms-python.autopep8"
4
+ },
5
+ "python.formatting.provider": "none"
6
+ }
app.py CHANGED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ iface = gr.Interface(fn=greet, input="text", outputs="text")
7
+ iface.launch()