mirror of
https://github.com/songquanpeng/one-api.git
synced 2025-09-20 10:36: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
71 lines
2.1 KiB
Go
71 lines
2.1 KiB
Go
package xunfei
|
|
|
|
// import (
|
|
// "github.com/Laisky/errors/v2"
|
|
// "github.com/gin-gonic/gin"
|
|
// "github.com/songquanpeng/one-api/relay/channel"
|
|
// "github.com/songquanpeng/one-api/relay/channel/openai"
|
|
// "github.com/songquanpeng/one-api/relay/model"
|
|
// "github.com/songquanpeng/one-api/relay/util"
|
|
// "io"
|
|
// "net/http"
|
|
// "strings"
|
|
// )
|
|
|
|
// type Adaptor struct {
|
|
// request *model.GeneralOpenAIRequest
|
|
// }
|
|
|
|
// func (a *Adaptor) Init(meta *util.RelayMeta) {
|
|
|
|
// }
|
|
|
|
// func (a *Adaptor) GetRequestURL(meta *util.RelayMeta) (string, error) {
|
|
// return "", nil
|
|
// }
|
|
|
|
// func (a *Adaptor) SetupRequestHeader(c *gin.Context, req *http.Request, meta *util.RelayMeta) error {
|
|
// channel.SetupCommonRequestHeader(c, req, meta)
|
|
// // check DoResponse for auth part
|
|
// return nil
|
|
// }
|
|
|
|
// func (a *Adaptor) ConvertRequest(c *gin.Context, relayMode int, request *model.GeneralOpenAIRequest) (any, error) {
|
|
// if request == nil {
|
|
// return nil, errors.New("request is nil")
|
|
// }
|
|
// a.request = request
|
|
// return nil, nil
|
|
// }
|
|
|
|
// func (a *Adaptor) DoRequest(c *gin.Context, meta *util.RelayMeta, requestBody io.Reader) (*http.Response, error) {
|
|
// // xunfei's request is not http request, so we don't need to do anything here
|
|
// dummyResp := &http.Response{}
|
|
// dummyResp.StatusCode = http.StatusOK
|
|
// return dummyResp, nil
|
|
// }
|
|
|
|
// func (a *Adaptor) DoResponse(c *gin.Context, resp *http.Response, meta *util.RelayMeta) (usage *model.Usage, err *model.ErrorWithStatusCode) {
|
|
// splits := strings.Split(meta.APIKey, "|")
|
|
// if len(splits) != 3 {
|
|
// return nil, openai.ErrorWrapper(errors.New("invalid auth"), "invalid_auth", http.StatusBadRequest)
|
|
// }
|
|
// if a.request == nil {
|
|
// return nil, openai.ErrorWrapper(errors.New("request is nil"), "request_is_nil", http.StatusBadRequest)
|
|
// }
|
|
// if meta.IsStream {
|
|
// err, usage = StreamHandler(c, *a.request, splits[0], splits[1], splits[2])
|
|
// } else {
|
|
// err, usage = Handler(c, *a.request, splits[0], splits[1], splits[2])
|
|
// }
|
|
// return
|
|
// }
|
|
|
|
// func (a *Adaptor) GetModelList() []string {
|
|
// return ModelList
|
|
// }
|
|
|
|
// func (a *Adaptor) GetChannelName() string {
|
|
// return "xunfei"
|
|
// }
|