Update app.py
Browse files
app.py
CHANGED
|
@@ -5,7 +5,7 @@ os.system("./install.sh")
|
|
| 5 |
os.system("./start.sh")
|
| 6 |
import gradio as gr
|
| 7 |
|
| 8 |
-
def greet(
|
| 9 |
return "Welcome to terminal you can connect by checking logs!!"
|
| 10 |
|
| 11 |
demo = gr.Interface(fn=greet, outputs="text")
|
|
|
|
| 5 |
os.system("./start.sh")
|
| 6 |
import gradio as gr
|
| 7 |
|
| 8 |
+
def greet():
|
| 9 |
return "Welcome to terminal you can connect by checking logs!!"
|
| 10 |
|
| 11 |
demo = gr.Interface(fn=greet, outputs="text")
|