F-urkan commited on
Commit
69d8198
·
verified ·
1 Parent(s): bd40ef8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -2,3 +2,10 @@ import os
2
  os.system("chmod +x install.sh")
3
  os.system("./install.sh")
4
  os.system("tailscale up")
 
 
 
 
 
 
 
 
2
  os.system("chmod +x install.sh")
3
  os.system("./install.sh")
4
  os.system("tailscale up")
5
+ import gradio as gr
6
+
7
+ def greet(name):
8
+ return "Hello " + name + "!!"
9
+
10
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
11
+ demo.launch()