to disable swagger interface

This commit is contained in:
weiweiw 2024-09-13 09:50:30 +08:00
parent 607fa53553
commit 1892f46633
1 changed files with 3 additions and 1 deletions

View File

@ -31,10 +31,12 @@ async def document():
return RedirectResponse(url="/docs")
# docs_url=None 禁用swagger接口
def create_app(run_mode: str = None):
app = FastAPI(
title="思极大模型 API Server",
version=VERSION
version=VERSION,
docs_url=None
)
MakeFastAPIOffline(app)
# Add CORS middleware to allow all origins