Spaces:
Sleeping
Sleeping
Initial WorkWise backend deployment FastAPI app
Browse files
app.py
CHANGED
|
@@ -7,7 +7,7 @@ gradio_app = gr.Blocks()
|
|
| 7 |
gradio_app.launch = lambda *args, **kwargs: None # Dummy launch; not used
|
| 8 |
|
| 9 |
# Hugging Face expects a variable called `app`
|
| 10 |
-
app = FastAPI()
|
| 11 |
|
| 12 |
@app.get("/")
|
| 13 |
def root():
|
|
|
|
| 7 |
gradio_app.launch = lambda *args, **kwargs: None # Dummy launch; not used
|
| 8 |
|
| 9 |
# Hugging Face expects a variable called `app`
|
| 10 |
+
app = FastAPI(title="WorkWise Backend")
|
| 11 |
|
| 12 |
@app.get("/")
|
| 13 |
def root():
|