Files
new-api/relay/channel/tencent/adaptor.go

98 lines
2.7 KiB
Go
Raw Normal View History

2024-02-29 01:08:18 +08:00
package tencent
import (
"errors"
"fmt"
"github.com/gin-gonic/gin"
"io"
"net/http"
2024-07-05 20:00:52 +08:00
"one-api/common"
2024-02-29 01:08:18 +08:00
"one-api/dto"
2024-02-29 16:21:25 +08:00
"one-api/relay/channel"
2024-02-29 01:08:18 +08:00
relaycommon "one-api/relay/common"
"one-api/service"
2024-07-05 20:00:52 +08:00
"strconv"
2024-02-29 01:08:18 +08:00
"strings"
)
type Adaptor struct {
2024-07-05 20:00:52 +08:00
Sign string
2024-07-08 23:42:16 +08:00
AppID int64
2024-07-05 20:00:52 +08:00
Action string
Version string
Timestamp int64
2024-02-29 01:08:18 +08:00
}
2024-07-16 22:07:10 +08:00
func (a *Adaptor) ConvertAudioRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.AudioRequest) (io.Reader, error) {
2024-07-06 17:09:22 +08:00
//TODO implement me
2024-07-16 22:07:10 +08:00
return nil, errors.New("not implemented")
}
2024-07-06 17:09:22 +08:00
2024-07-16 22:07:10 +08:00
func (a *Adaptor) ConvertImageRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.ImageRequest) (any, error) {
//TODO implement me
return nil, errors.New("not implemented")
2024-07-06 17:09:22 +08:00
}
2024-07-16 22:07:10 +08:00
func (a *Adaptor) Init(info *relaycommon.RelayInfo) {
2024-07-05 20:00:52 +08:00
a.Action = "ChatCompletions"
a.Version = "2023-09-01"
a.Timestamp = common.GetTimestamp()
2024-02-29 01:08:18 +08:00
}
func (a *Adaptor) GetRequestURL(info *relaycommon.RelayInfo) (string, error) {
2024-07-08 23:42:16 +08:00
return fmt.Sprintf("%s/", info.BaseUrl), nil
2024-02-29 01:08:18 +08:00
}
func (a *Adaptor) SetupRequestHeader(c *gin.Context, req *http.Header, info *relaycommon.RelayInfo) error {
2024-02-29 16:21:25 +08:00
channel.SetupApiRequestHeader(info, c, req)
req.Set("Authorization", a.Sign)
req.Set("X-TC-Action", a.Action)
req.Set("X-TC-Version", a.Version)
req.Set("X-TC-Timestamp", strconv.FormatInt(a.Timestamp, 10))
2024-02-29 01:08:18 +08:00
return nil
}
2024-07-15 16:05:30 +08:00
func (a *Adaptor) ConvertRequest(c *gin.Context, info *relaycommon.RelayInfo, request *dto.GeneralOpenAIRequest) (any, error) {
2024-02-29 01:08:18 +08:00
if request == nil {
return nil, errors.New("request is nil")
}
apiKey := c.Request.Header.Get("Authorization")
apiKey = strings.TrimPrefix(apiKey, "Bearer ")
2024-07-08 23:42:16 +08:00
appId, secretId, secretKey, err := parseTencentConfig(apiKey)
a.AppID = appId
2024-02-29 01:08:18 +08:00
if err != nil {
return nil, err
}
2024-07-08 23:42:16 +08:00
tencentRequest := requestOpenAI2Tencent(a, *request)
2024-02-29 01:08:18 +08:00
// we have to calculate the sign here
2024-07-05 20:00:52 +08:00
a.Sign = getTencentSign(*tencentRequest, a, secretId, secretKey)
2024-02-29 01:08:18 +08:00
return tencentRequest, nil
}
2024-07-06 17:09:22 +08:00
func (a *Adaptor) ConvertRerankRequest(c *gin.Context, relayMode int, request dto.RerankRequest) (any, error) {
return nil, nil
}
func (a *Adaptor) DoRequest(c *gin.Context, info *relaycommon.RelayInfo, requestBody io.Reader) (any, error) {
2024-02-29 16:21:25 +08:00
return channel.DoApiRequest(a, c, info, requestBody)
2024-02-29 01:08:18 +08:00
}
func (a *Adaptor) DoResponse(c *gin.Context, resp *http.Response, info *relaycommon.RelayInfo) (usage any, err *dto.OpenAIErrorWithStatusCode) {
2024-02-29 01:08:18 +08:00
if info.IsStream {
var responseText string
err, responseText = tencentStreamHandler(c, resp)
2024-03-20 17:07:42 +08:00
usage, _ = service.ResponseText2Usage(responseText, info.UpstreamModelName, info.PromptTokens)
2024-02-29 01:08:18 +08:00
} else {
err, usage = tencentHandler(c, resp)
}
return
}
func (a *Adaptor) GetModelList() []string {
return ModelList
}
func (a *Adaptor) GetChannelName() string {
return ChannelName
}