mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-10 21:39:33 +00:00
feat: (0.6)New UI (#1855)
Co-authored-by: 夏姜 <wenfengjiang.jwf@digital-engine.com> Co-authored-by: aries_ckt <916701291@qq.com> Co-authored-by: wb-lh513319 <wb-lh513319@alibaba-inc.com> Co-authored-by: csunny <cfqsunny@163.com>
This commit is contained in:
@@ -2,13 +2,12 @@ from fastapi import Request
|
||||
from fastapi.exceptions import RequestValidationError
|
||||
from fastapi.responses import JSONResponse
|
||||
|
||||
from dbgpt._private.pydantic import model_to_dict
|
||||
from dbgpt.app.openapi.api_view_model import Result
|
||||
|
||||
|
||||
async def validation_exception_handler(request: Request, exc: RequestValidationError):
|
||||
message = ""
|
||||
for error in exc.errors():
|
||||
loc = ".".join(list(map(str, error.get("loc"))))
|
||||
message += loc + ":" + error.get("msg") + ";"
|
||||
res = Result.failed(code="E0001", msg=message)
|
||||
return JSONResponse(status_code=400, content=res.to_dict())
|
||||
message += ".".join(error.get("loc")) + ":" + error.get("msg") + ";"
|
||||
return Result.failed(code="E0001", msg=message)
|
||||
|
Reference in New Issue
Block a user