Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
9682c46c
authored
Aug 08, 2025
by
CaIon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: implement moonshot adaptor for request handling and response processing
parent
b49274ea
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
119 additions
and
19 deletions
+119
-19
common/api_type.go
+2
-0
constant/api_type.go
+1
-0
relay/channel/ali/adaptor.go
+2
-14
relay/channel/moonshot/adaptor.go
+111
-0
relay/channel/openai/adaptor.go
+0
-5
relay/relay_adaptor.go
+3
-0
No files found.
common/api_type.go
View file @
9682c46c
...
@@ -65,6 +65,8 @@ func ChannelType2APIType(channelType int) (int, bool) {
...
@@ -65,6 +65,8 @@ func ChannelType2APIType(channelType int) (int, bool) {
apiType
=
constant
.
APITypeCoze
apiType
=
constant
.
APITypeCoze
case
constant
.
ChannelTypeJimeng
:
case
constant
.
ChannelTypeJimeng
:
apiType
=
constant
.
APITypeJimeng
apiType
=
constant
.
APITypeJimeng
case
constant
.
ChannelTypeMoonshot
:
apiType
=
constant
.
APITypeMoonshot
}
}
if
apiType
==
-
1
{
if
apiType
==
-
1
{
return
constant
.
APITypeOpenAI
,
false
return
constant
.
APITypeOpenAI
,
false
...
...
constant/api_type.go
View file @
9682c46c
...
@@ -31,5 +31,6 @@ const (
...
@@ -31,5 +31,6 @@ const (
APITypeXai
APITypeXai
APITypeCoze
APITypeCoze
APITypeJimeng
APITypeJimeng
APITypeMoonshot
// this one is only for count, do not add any channel after this
APITypeDummy
// this one is only for count, do not add any channel after this
APITypeDummy
// this one is only for count, do not add any channel after this
)
)
relay/channel/ali/adaptor.go
View file @
9682c46c
...
@@ -125,20 +125,8 @@ func (a *Adaptor) DoResponse(c *gin.Context, resp *http.Response, info *relaycom
...
@@ -125,20 +125,8 @@ func (a *Adaptor) DoResponse(c *gin.Context, resp *http.Response, info *relaycom
err
,
usage
=
claude
.
ClaudeHandler
(
c
,
resp
,
info
,
claude
.
RequestModeMessage
)
err
,
usage
=
claude
.
ClaudeHandler
(
c
,
resp
,
info
,
claude
.
RequestModeMessage
)
}
}
default
:
default
:
switch
info
.
RelayMode
{
adaptor
:=
openai
.
Adaptor
{}
case
constant
.
RelayModeImagesGenerations
:
return
adaptor
.
DoResponse
(
c
,
resp
,
info
)
err
,
usage
=
aliImageHandler
(
c
,
resp
,
info
)
case
constant
.
RelayModeEmbeddings
:
err
,
usage
=
aliEmbeddingHandler
(
c
,
resp
)
case
constant
.
RelayModeRerank
:
err
,
usage
=
RerankHandler
(
c
,
resp
,
info
)
default
:
if
info
.
IsStream
{
usage
,
err
=
openai
.
OaiStreamHandler
(
c
,
info
,
resp
)
}
else
{
usage
,
err
=
openai
.
OpenaiHandler
(
c
,
info
,
resp
)
}
}
}
}
return
return
}
}
...
...
relay/channel/moonshot/adaptor.go
0 → 100644
View file @
9682c46c
package
moonshot
import
(
"errors"
"fmt"
"io"
"net/http"
"one-api/dto"
"one-api/relay/channel"
"one-api/relay/channel/claude"
"one-api/relay/channel/openai"
relaycommon
"one-api/relay/common"
"one-api/relay/constant"
"one-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
:=
openai
.
Adaptor
{}
return
adaptor
.
ConvertClaudeRequest
(
c
,
info
,
req
)
}
func
(
a
*
Adaptor
)
ConvertAudioRequest
(
c
*
gin
.
Context
,
info
*
relaycommon
.
RelayInfo
,
request
dto
.
AudioRequest
)
(
io
.
Reader
,
error
)
{
//TODO implement me
return
nil
,
errors
.
New
(
"not supported"
)
}
func
(
a
*
Adaptor
)
ConvertImageRequest
(
c
*
gin
.
Context
,
info
*
relaycommon
.
RelayInfo
,
request
dto
.
ImageRequest
)
(
any
,
error
)
{
adaptor
:=
openai
.
Adaptor
{}
return
adaptor
.
ConvertImageRequest
(
c
,
info
,
request
)
}
func
(
a
*
Adaptor
)
Init
(
info
*
relaycommon
.
RelayInfo
)
{
}
func
(
a
*
Adaptor
)
GetRequestURL
(
info
*
relaycommon
.
RelayInfo
)
(
string
,
error
)
{
switch
info
.
RelayFormat
{
case
relaycommon
.
RelayFormatClaude
:
return
fmt
.
Sprintf
(
"%s/anthropic/v1/messages"
,
info
.
BaseUrl
),
nil
default
:
if
info
.
RelayMode
==
constant
.
RelayModeRerank
{
return
fmt
.
Sprintf
(
"%s/v1/rerank"
,
info
.
BaseUrl
),
nil
}
else
if
info
.
RelayMode
==
constant
.
RelayModeEmbeddings
{
return
fmt
.
Sprintf
(
"%s/v1/embeddings"
,
info
.
BaseUrl
),
nil
}
else
if
info
.
RelayMode
==
constant
.
RelayModeChatCompletions
{
return
fmt
.
Sprintf
(
"%s/v1/chat/completions"
,
info
.
BaseUrl
),
nil
}
else
if
info
.
RelayMode
==
constant
.
RelayModeCompletions
{
return
fmt
.
Sprintf
(
"%s/v1/completions"
,
info
.
BaseUrl
),
nil
}
return
fmt
.
Sprintf
(
"%s/v1/chat/completions"
,
info
.
BaseUrl
),
nil
}
}
func
(
a
*
Adaptor
)
SetupRequestHeader
(
c
*
gin
.
Context
,
req
*
http
.
Header
,
info
*
relaycommon
.
RelayInfo
)
error
{
channel
.
SetupApiRequestHeader
(
info
,
c
,
req
)
req
.
Set
(
"Authorization"
,
fmt
.
Sprintf
(
"Bearer %s"
,
info
.
ApiKey
))
return
nil
}
func
(
a
*
Adaptor
)
ConvertOpenAIRequest
(
c
*
gin
.
Context
,
info
*
relaycommon
.
RelayInfo
,
request
*
dto
.
GeneralOpenAIRequest
)
(
any
,
error
)
{
return
request
,
nil
}
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
)
ConvertRerankRequest
(
c
*
gin
.
Context
,
relayMode
int
,
request
dto
.
RerankRequest
)
(
any
,
error
)
{
return
request
,
nil
}
func
(
a
*
Adaptor
)
ConvertEmbeddingRequest
(
c
*
gin
.
Context
,
info
*
relaycommon
.
RelayInfo
,
request
dto
.
EmbeddingRequest
)
(
any
,
error
)
{
return
request
,
nil
}
func
(
a
*
Adaptor
)
DoResponse
(
c
*
gin
.
Context
,
resp
*
http
.
Response
,
info
*
relaycommon
.
RelayInfo
)
(
usage
any
,
err
*
types
.
NewAPIError
)
{
switch
info
.
RelayFormat
{
case
relaycommon
.
RelayFormatOpenAI
:
adaptor
:=
openai
.
Adaptor
{}
return
adaptor
.
DoResponse
(
c
,
resp
,
info
)
case
relaycommon
.
RelayFormatClaude
:
if
info
.
IsStream
{
err
,
usage
=
claude
.
ClaudeStreamHandler
(
c
,
resp
,
info
,
claude
.
RequestModeMessage
)
}
else
{
err
,
usage
=
claude
.
ClaudeHandler
(
c
,
resp
,
info
,
claude
.
RequestModeMessage
)
}
}
return
}
func
(
a
*
Adaptor
)
GetModelList
()
[]
string
{
return
ModelList
}
func
(
a
*
Adaptor
)
GetChannelName
()
string
{
return
ChannelName
}
relay/channel/openai/adaptor.go
View file @
9682c46c
...
@@ -16,7 +16,6 @@ import (
...
@@ -16,7 +16,6 @@ import (
"one-api/relay/channel/ai360"
"one-api/relay/channel/ai360"
"one-api/relay/channel/lingyiwanwu"
"one-api/relay/channel/lingyiwanwu"
"one-api/relay/channel/minimax"
"one-api/relay/channel/minimax"
"one-api/relay/channel/moonshot"
"one-api/relay/channel/openrouter"
"one-api/relay/channel/openrouter"
"one-api/relay/channel/xinference"
"one-api/relay/channel/xinference"
relaycommon
"one-api/relay/common"
relaycommon
"one-api/relay/common"
...
@@ -534,8 +533,6 @@ func (a *Adaptor) GetModelList() []string {
...
@@ -534,8 +533,6 @@ func (a *Adaptor) GetModelList() []string {
switch
a
.
ChannelType
{
switch
a
.
ChannelType
{
case
constant
.
ChannelType360
:
case
constant
.
ChannelType360
:
return
ai360
.
ModelList
return
ai360
.
ModelList
case
constant
.
ChannelTypeMoonshot
:
return
moonshot
.
ModelList
case
constant
.
ChannelTypeLingYiWanWu
:
case
constant
.
ChannelTypeLingYiWanWu
:
return
lingyiwanwu
.
ModelList
return
lingyiwanwu
.
ModelList
case
constant
.
ChannelTypeMiniMax
:
case
constant
.
ChannelTypeMiniMax
:
...
@@ -553,8 +550,6 @@ func (a *Adaptor) GetChannelName() string {
...
@@ -553,8 +550,6 @@ func (a *Adaptor) GetChannelName() string {
switch
a
.
ChannelType
{
switch
a
.
ChannelType
{
case
constant
.
ChannelType360
:
case
constant
.
ChannelType360
:
return
ai360
.
ChannelName
return
ai360
.
ChannelName
case
constant
.
ChannelTypeMoonshot
:
return
moonshot
.
ChannelName
case
constant
.
ChannelTypeLingYiWanWu
:
case
constant
.
ChannelTypeLingYiWanWu
:
return
lingyiwanwu
.
ChannelName
return
lingyiwanwu
.
ChannelName
case
constant
.
ChannelTypeMiniMax
:
case
constant
.
ChannelTypeMiniMax
:
...
...
relay/relay_adaptor.go
View file @
9682c46c
...
@@ -19,6 +19,7 @@ import (
...
@@ -19,6 +19,7 @@ import (
"one-api/relay/channel/jina"
"one-api/relay/channel/jina"
"one-api/relay/channel/mistral"
"one-api/relay/channel/mistral"
"one-api/relay/channel/mokaai"
"one-api/relay/channel/mokaai"
"one-api/relay/channel/moonshot"
"one-api/relay/channel/ollama"
"one-api/relay/channel/ollama"
"one-api/relay/channel/openai"
"one-api/relay/channel/openai"
"one-api/relay/channel/palm"
"one-api/relay/channel/palm"
...
@@ -98,6 +99,8 @@ func GetAdaptor(apiType int) channel.Adaptor {
...
@@ -98,6 +99,8 @@ func GetAdaptor(apiType int) channel.Adaptor {
return
&
coze
.
Adaptor
{}
return
&
coze
.
Adaptor
{}
case
constant
.
APITypeJimeng
:
case
constant
.
APITypeJimeng
:
return
&
jimeng
.
Adaptor
{}
return
&
jimeng
.
Adaptor
{}
case
constant
.
APITypeMoonshot
:
return
&
moonshot
.
Adaptor
{}
// Moonshot uses Claude API
}
}
return
nil
return
nil
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment