Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -245,6 +245,6 @@ def agent_step(body: AgentStepRequest):
|
|
| 245 |
fastapi_app.mount("/", StaticFiles(directory="static", html=True), name="static")
|
| 246 |
|
| 247 |
|
| 248 |
-
# ββ Launch ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 249 |
if __name__ == "__main__":
|
|
|
|
| 250 |
uvicorn.run("app:fastapi_app", host="0.0.0.0", port=7860, log_level="info")
|
|
|
|
| 245 |
fastapi_app.mount("/", StaticFiles(directory="static", html=True), name="static")
|
| 246 |
|
| 247 |
|
|
|
|
| 248 |
if __name__ == "__main__":
|
| 249 |
+
# Change "app:app" (implicit) to "app:fastapi_app"
|
| 250 |
uvicorn.run("app:fastapi_app", host="0.0.0.0", port=7860, log_level="info")
|