mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-17 06:45:24 +00:00
fix: handle http exceptions
This commit is contained in:
parent
31f00bbc69
commit
4f6ae8239d
1 changed files with 5 additions and 0 deletions
|
|
@ -855,6 +855,11 @@ class PipelineMiddleware(BaseHTTPMiddleware):
|
||||||
status_code=status.HTTP_401_UNAUTHORIZED,
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
||||||
content={"detail": "Not authenticated"},
|
content={"detail": "Not authenticated"},
|
||||||
)
|
)
|
||||||
|
except HTTPException as e:
|
||||||
|
return JSONResponse(
|
||||||
|
status_code=e.status_code,
|
||||||
|
content={"detail": e.detail},
|
||||||
|
)
|
||||||
|
|
||||||
model_list = await get_all_models()
|
model_list = await get_all_models()
|
||||||
models = {model["id"]: model for model in model_list}
|
models = {model["id"]: model for model in model_list}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue