| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- package deepseek
- import (
- "errors"
- "fmt"
- "io"
- "net/http"
- "strings"
- "github.com/QuantumNous/new-api/common"
- "github.com/QuantumNous/new-api/dto"
- "github.com/QuantumNous/new-api/relay/channel"
- "github.com/QuantumNous/new-api/relay/channel/claude"
- "github.com/QuantumNous/new-api/relay/channel/openai"
- relaycommon "github.com/QuantumNous/new-api/relay/common"
- "github.com/QuantumNous/new-api/relay/constant"
- "github.com/QuantumNous/new-api/setting/reasoning"
- "github.com/QuantumNous/new-api/types"
- "github.com/gin-gonic/gin"
- )
- type Adaptor struct {
- }
- func (a *Adaptor) ConvertGeminiRequest(*gin.Context, *relaycommon.RelayInfo, *dto.GeminiChatRequest) (any, error) {
- //TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) ConvertClaudeRequest(c *gin.Context, info *relaycommon.RelayInfo, req *dto.ClaudeRequest) (any, error) {
- adaptor := claude.Adaptor{}
- convertedRequest, err := adaptor.ConvertClaudeRequest(c, info, req)
- if err != nil {
- return nil, err
- }
- claudeRequest, ok := convertedRequest.(*dto.ClaudeRequest)
- if !ok {
- return convertedRequest, nil
- }
- if err := applyDeepSeekV4ClaudeThinkingSuffix(info, claudeRequest); err != nil {
- return nil, err
- }
- return claudeRequest, nil
- }
- func (a *Adaptor) ConvertAudioRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.AudioRequest) (io.Reader, error) {
- //TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) ConvertImageRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.ImageRequest) (any, error) {
- //TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) Init(info *relaycommon.RelayInfo) {
- }
- func (a *Adaptor) GetRequestURL(info *relaycommon.RelayInfo) (string, error) {
- fimBaseUrl := info.ChannelBaseUrl
- switch info.RelayFormat {
- case types.RelayFormatClaude:
- return fmt.Sprintf("%s/anthropic/v1/messages", info.ChannelBaseUrl), nil
- default:
- if !strings.HasSuffix(info.ChannelBaseUrl, "/beta") {
- fimBaseUrl += "/beta"
- }
- switch info.RelayMode {
- case constant.RelayModeCompletions:
- return fmt.Sprintf("%s/completions", fimBaseUrl), nil
- default:
- return fmt.Sprintf("%s/v1/chat/completions", info.ChannelBaseUrl), nil
- }
- }
- }
- func (a *Adaptor) SetupRequestHeader(c *gin.Context, req *http.Header, info *relaycommon.RelayInfo) error {
- channel.SetupApiRequestHeader(info, c, req)
- req.Set("Authorization", "Bearer "+info.ApiKey)
- return nil
- }
- func (a *Adaptor) ConvertOpenAIRequest(c *gin.Context, info *relaycommon.RelayInfo, request *dto.GeneralOpenAIRequest) (any, error) {
- if request == nil {
- return nil, errors.New("request is nil")
- }
- if err := applyDeepSeekV4OpenAIThinkingSuffix(info, request); err != nil {
- return nil, err
- }
- return request, nil
- }
- func applyDeepSeekV4OpenAIThinkingSuffix(info *relaycommon.RelayInfo, request *dto.GeneralOpenAIRequest) error {
- modelName := request.Model
- if info != nil && info.ChannelMeta != nil && info.UpstreamModelName != "" {
- modelName = info.UpstreamModelName
- }
- baseModel, thinkingType, effort, ok := reasoning.ParseDeepSeekV4ThinkingSuffix(modelName)
- if !ok {
- return nil
- }
- thinking, err := common.Marshal(map[string]string{
- "type": thinkingType,
- })
- if err != nil {
- return fmt.Errorf("error marshalling thinking: %w", err)
- }
- request.Model = baseModel
- request.THINKING = thinking
- request.ReasoningEffort = effort
- if info != nil {
- if info.ChannelMeta != nil {
- info.UpstreamModelName = baseModel
- }
- info.ReasoningEffort = effort
- }
- return nil
- }
- func applyDeepSeekV4ClaudeThinkingSuffix(info *relaycommon.RelayInfo, request *dto.ClaudeRequest) error {
- modelName := request.Model
- if info != nil && info.ChannelMeta != nil && info.UpstreamModelName != "" {
- modelName = info.UpstreamModelName
- }
- baseModel, thinkingType, effort, ok := reasoning.ParseDeepSeekV4ThinkingSuffix(modelName)
- if !ok {
- return nil
- }
- request.Model = baseModel
- request.Thinking = &dto.Thinking{Type: thinkingType}
- if effort == "" {
- request.OutputConfig = nil
- } else {
- outputConfig, err := common.Marshal(map[string]string{
- "effort": effort,
- })
- if err != nil {
- return fmt.Errorf("error marshalling output_config: %w", err)
- }
- request.OutputConfig = outputConfig
- }
- if info != nil {
- if info.ChannelMeta != nil {
- info.UpstreamModelName = baseModel
- }
- info.ReasoningEffort = effort
- }
- return nil
- }
- func (a *Adaptor) ConvertRerankRequest(c *gin.Context, relayMode int, request dto.RerankRequest) (any, error) {
- return nil, nil
- }
- func (a *Adaptor) ConvertEmbeddingRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.EmbeddingRequest) (any, error) {
- //TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) ConvertOpenAIResponsesRequest(c *gin.Context, info *relaycommon.RelayInfo, request dto.OpenAIResponsesRequest) (any, error) {
- // TODO implement me
- return nil, errors.New("not implemented")
- }
- func (a *Adaptor) DoRequest(c *gin.Context, info *relaycommon.RelayInfo, requestBody io.Reader) (any, error) {
- return channel.DoApiRequest(a, c, info, requestBody)
- }
- func (a *Adaptor) DoResponse(c *gin.Context, resp *http.Response, info *relaycommon.RelayInfo) (usage any, err *types.NewAPIError) {
- switch info.RelayFormat {
- case types.RelayFormatClaude:
- adaptor := claude.Adaptor{}
- return adaptor.DoResponse(c, resp, info)
- default:
- adaptor := openai.Adaptor{}
- return adaptor.DoResponse(c, resp, info)
- }
- }
- func (a *Adaptor) GetModelList() []string {
- return ModelList
- }
- func (a *Adaptor) GetChannelName() string {
- return ChannelName
- }
|