Browse Source

Set FastAPI title to `Open WebUI`

This affects the generated OpenAPI (`/docs` and `/openapi.json`).
Noam Tamim 1 tháng trước cách đây
mục cha
commit
15fd822916
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      backend/open_webui/main.py

+ 1 - 0
backend/open_webui/main.py

@@ -426,6 +426,7 @@ async def lifespan(app: FastAPI):
 
 
 app = FastAPI(
+    title="Open WebUI",
     docs_url="/docs" if ENV == "dev" else None,
     openapi_url="/openapi.json" if ENV == "dev" else None,
     redoc_url=None,