Set FastAPI title to Open WebUI

This affects the generated OpenAPI (`/docs` and `/openapi.json`).
This commit is contained in:
Noam Tamim 2025-04-09 19:45:17 +03:00 committed by GitHub
parent 63533c9e3a
commit 15fd822916
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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,