meg HF staff commited on
Commit
edad368
1 Parent(s): e5eecc8

Adding dumming_interface.

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -1,7 +1,6 @@
1
- from fastapi import FastAPI
2
 
3
- app = FastAPI()
 
4
 
5
- @app.get("/")
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()