Update app.py
Browse files
app.py
CHANGED
|
@@ -5,8 +5,8 @@ os.system("./install.sh")
|
|
| 5 |
os.system("./start.sh")
|
| 6 |
import gradio as gr
|
| 7 |
|
| 8 |
-
|
| 9 |
-
|
| 10 |
|
| 11 |
-
demo = gr.Interface(fn=greet, outputs="text")
|
| 12 |
demo.launch()
|
|
|
|
|
|
| 5 |
os.system("./start.sh")
|
| 6 |
import gradio as gr
|
| 7 |
|
| 8 |
+
with gr.Blocks() as demo:
|
| 9 |
+
gr.Markdown("# Merhaba!")
|
| 10 |
|
|
|
|
| 11 |
demo.launch()
|
| 12 |
+
|