feat(error): Enhance error handling with optional detailed error messages

This commit is contained in:
1808837298@qq.com
2025-03-11 17:25:06 +08:00
parent ba696b33dc
commit 0db072de86
7 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ func EmbeddingHelper(c *gin.Context) (openaiErr *dto.OpenAIErrorWithStatusCode)
if resp != nil {
httpResp = resp.(*http.Response)
if httpResp.StatusCode != http.StatusOK {
openaiErr = service.RelayErrorHandler(httpResp)
openaiErr = service.RelayErrorHandler(httpResp, false)
// reset status code 重置状态码
service.ResetStatusCode(openaiErr, statusCodeMappingStr)
return openaiErr