Adding dumming_interface.
Browse files
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
-
|
2 |
|
3 |
-
|
|
|
4 |
|
5 |
-
|
6 |
-
def greet_json():
|
7 |
-
return {"Hello": "World!"}
|
|
|
1 |
+
import gradio as gr
|
2 |
|
3 |
+
with gr.Blocks() as dummy_interface:
|
4 |
+
gr.Markdown("Backend Space; nothing to see here.")
|
5 |
|
6 |
+
dummy_interface.launch()
|
|
|
|