mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-18 01:26:37 +08:00
- Updated error handling across multiple files with `Laisky/errors/v2` package - Replaced hardcoded error messages with `Laisky/errors` in relay/channel/tencent/adaptor.go - Added a function to check if a request should be retried in relay/controller/relay.go - Removed unused imports and variables, and updated comments in various files - Changed Redis cache handling in model/cache.go - Refactored error handling in relay/channel/tencent/main.go and relay/channel/baidu/main.go - Updated import paths and error handling in model/user.go, model/redemption.go, and controller/github.go - Added import for tiktoken-go package in relay/channel/openai/token.go - Added GetSign and ParseConfig functions in relay/channel/tencent/main.go - Replaced specific error imports with a more general one in relay/channel/ali/adaptor.go - Updated import comments and function calls in relay/channel/ali/adaptor.go - Added checks and custom error messages in model/token.go - Removed unused functions and variables in relay/channel/baidu/adaptor.go - Imported "github.com/Laisky/errors/v2" package in controller/channel-billing.go - Removed unused import packages in [relay/channel/tencent/adaptor.go](http://relay/channel/tencent/adaptor.go) and relay/channel/palm/adaptor.go - Updated go.mod and go.sum files with new dependencies and versions
149 lines
4.4 KiB
Go
149 lines
4.4 KiB
Go
package controller
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/pkg/errors"
|
|
"github.com/songquanpeng/one-api/common"
|
|
"github.com/songquanpeng/one-api/common/config"
|
|
"github.com/songquanpeng/one-api/common/helper"
|
|
"github.com/songquanpeng/one-api/common/logger"
|
|
"github.com/songquanpeng/one-api/middleware"
|
|
dbmodel "github.com/songquanpeng/one-api/model"
|
|
"github.com/songquanpeng/one-api/monitor"
|
|
"github.com/songquanpeng/one-api/relay/constant"
|
|
"github.com/songquanpeng/one-api/relay/controller"
|
|
"github.com/songquanpeng/one-api/relay/model"
|
|
"github.com/songquanpeng/one-api/relay/util"
|
|
)
|
|
|
|
// https://platform.openai.com/docs/api-reference/chat
|
|
|
|
func relay(c *gin.Context, relayMode int) *model.ErrorWithStatusCode {
|
|
var err *model.ErrorWithStatusCode
|
|
switch relayMode {
|
|
case constant.RelayModeImagesGenerations:
|
|
err = controller.RelayImageHelper(c, relayMode)
|
|
case constant.RelayModeAudioSpeech:
|
|
fallthrough
|
|
case constant.RelayModeAudioTranslation:
|
|
fallthrough
|
|
case constant.RelayModeAudioTranscription:
|
|
err = controller.RelayAudioHelper(c, relayMode)
|
|
default:
|
|
err = controller.RelayTextHelper(c)
|
|
}
|
|
return err
|
|
}
|
|
|
|
func Relay(c *gin.Context) {
|
|
ctx := c.Request.Context()
|
|
relayMode := constant.Path2RelayMode(c.Request.URL.Path)
|
|
if config.DebugEnabled {
|
|
requestBody, _ := common.GetRequestBody(c)
|
|
logger.Debugf(ctx, "request body: %s", string(requestBody))
|
|
}
|
|
channelId := c.GetInt("channel_id")
|
|
bizErr := relay(c, relayMode)
|
|
if bizErr == nil {
|
|
monitor.Emit(channelId, true)
|
|
return
|
|
}
|
|
lastFailedChannelId := channelId
|
|
channelName := c.GetString("channel_name")
|
|
group := c.GetString("group")
|
|
originalModel := c.GetString("original_model")
|
|
go processChannelRelayError(ctx, channelId, channelName, bizErr)
|
|
requestId := c.GetString(logger.RequestIdKey)
|
|
retryTimes := config.RetryTimes
|
|
if err := shouldRetry(c, bizErr.StatusCode); err != nil {
|
|
logger.Errorf(ctx, "relay error happen, won't retry since of %v", err.Error())
|
|
retryTimes = 0
|
|
}
|
|
for i := retryTimes; i > 0; i-- {
|
|
channel, err := dbmodel.CacheGetRandomSatisfiedChannel(group, originalModel, i != retryTimes)
|
|
if err != nil {
|
|
logger.Errorf(ctx, "CacheGetRandomSatisfiedChannel failed: %+v", err)
|
|
break
|
|
}
|
|
logger.Infof(ctx, "using channel #%d to retry (remain times %d)", channel.Id, i)
|
|
if channel.Id == lastFailedChannelId {
|
|
continue
|
|
}
|
|
middleware.SetupContextForSelectedChannel(c, channel, originalModel)
|
|
requestBody, err := common.GetRequestBody(c)
|
|
c.Request.Body = io.NopCloser(bytes.NewBuffer(requestBody))
|
|
bizErr = relay(c, relayMode)
|
|
if bizErr == nil {
|
|
return
|
|
}
|
|
channelId := c.GetInt("channel_id")
|
|
lastFailedChannelId = channelId
|
|
channelName := c.GetString("channel_name")
|
|
go processChannelRelayError(ctx, channelId, channelName, bizErr)
|
|
}
|
|
if bizErr != nil {
|
|
if bizErr.StatusCode == http.StatusTooManyRequests {
|
|
bizErr.Error.Message = "当前分组上游负载已饱和,请稍后再试"
|
|
}
|
|
bizErr.Error.Message = helper.MessageWithRequestId(bizErr.Error.Message, requestId)
|
|
c.JSON(bizErr.StatusCode, gin.H{
|
|
"error": bizErr.Error,
|
|
})
|
|
}
|
|
}
|
|
|
|
// shouldRetry returns nil if should retry, otherwise returns error
|
|
func shouldRetry(c *gin.Context, statusCode int) error {
|
|
if v, ok := c.Get("specific_channel_id"); ok {
|
|
return errors.Errorf("specific channel = %v", v)
|
|
}
|
|
|
|
if statusCode == http.StatusBadRequest {
|
|
return errors.Errorf("status code = %d", statusCode)
|
|
}
|
|
if statusCode/100 == 2 {
|
|
return errors.Errorf("status code = %d", statusCode)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func processChannelRelayError(ctx context.Context, channelId int, channelName string, err *model.ErrorWithStatusCode) {
|
|
logger.Errorf(ctx, "relay error (channel #%d): %s", channelId, err.Message)
|
|
// https://platform.openai.com/docs/guides/error-codes/api-errors
|
|
if util.ShouldDisableChannel(&err.Error, err.StatusCode) {
|
|
monitor.DisableChannel(channelId, channelName, err.Message)
|
|
} else {
|
|
monitor.Emit(channelId, false)
|
|
}
|
|
}
|
|
|
|
func RelayNotImplemented(c *gin.Context) {
|
|
err := model.Error{
|
|
Message: "API not implemented",
|
|
Type: "one_api_error",
|
|
Param: "",
|
|
Code: "api_not_implemented",
|
|
}
|
|
c.JSON(http.StatusNotImplemented, gin.H{
|
|
"error": err,
|
|
})
|
|
}
|
|
|
|
func RelayNotFound(c *gin.Context) {
|
|
err := model.Error{
|
|
Message: fmt.Sprintf("Invalid URL (%s %s)", c.Request.Method, c.Request.URL.Path),
|
|
Type: "invalid_request_error",
|
|
Param: "",
|
|
Code: "",
|
|
}
|
|
c.JSON(http.StatusNotFound, gin.H{
|
|
"error": err,
|
|
})
|
|
}
|