feat: add Xunfei V2 channel support and update related configurations

This commit is contained in:
JustSong 2025-02-09 18:31:54 +08:00
parent 44233d5c04
commit 57c1367ec8
5 changed files with 32 additions and 1 deletions

View File

@ -16,6 +16,7 @@ import (
"github.com/songquanpeng/one-api/relay/adaptor/stepfun" "github.com/songquanpeng/one-api/relay/adaptor/stepfun"
"github.com/songquanpeng/one-api/relay/adaptor/togetherai" "github.com/songquanpeng/one-api/relay/adaptor/togetherai"
"github.com/songquanpeng/one-api/relay/adaptor/xai" "github.com/songquanpeng/one-api/relay/adaptor/xai"
"github.com/songquanpeng/one-api/relay/adaptor/xunfeiv2"
"github.com/songquanpeng/one-api/relay/channeltype" "github.com/songquanpeng/one-api/relay/channeltype"
) )
@ -36,6 +37,7 @@ var CompatibleChannels = []int{
channeltype.SiliconFlow, channeltype.SiliconFlow,
channeltype.XAI, channeltype.XAI,
channeltype.BaiduV2, channeltype.BaiduV2,
channeltype.XunfeiV2,
} }
func GetCompatibleChannelMeta(channelType int) (string, []string) { func GetCompatibleChannelMeta(channelType int) (string, []string) {
@ -72,6 +74,8 @@ func GetCompatibleChannelMeta(channelType int) (string, []string) {
return "xai", xai.ModelList return "xai", xai.ModelList
case channeltype.BaiduV2: case channeltype.BaiduV2:
return "baiduv2", baiduv2.ModelList return "baiduv2", baiduv2.ModelList
case channeltype.XunfeiV2:
return "xunfeiv2", xunfeiv2.ModelList
default: default:
return "openai", ModelList return "openai", ModelList
} }

View File

@ -0,0 +1,12 @@
package xunfeiv2
// https://www.xfyun.cn/doc/spark/HTTP%E8%B0%83%E7%94%A8%E6%96%87%E6%A1%A3.html#_3-%E8%AF%B7%E6%B1%82%E8%AF%B4%E6%98%8E
var ModelList = []string{
"lite",
"generalv3",
"pro-128k",
"generalv3.5",
"max-32k",
"4.0Ultra",
}

View File

@ -49,5 +49,6 @@ const (
XAI XAI
Replicate Replicate
BaiduV2 BaiduV2
XunfeiV2
Dummy Dummy
) )

View File

@ -49,6 +49,7 @@ var ChannelBaseURLs = []string{
"https://api.x.ai", // 45 "https://api.x.ai", // 45
"https://api.replicate.com/v1/models/", // 46 "https://api.replicate.com/v1/models/", // 46
"https://qianfan.baidubce.com", // 47 "https://qianfan.baidubce.com", // 47
"https://spark-api-open.xf-yun.com", // 48
} }
func init() { func init() {

View File

@ -29,7 +29,20 @@ export const CHANNEL_OPTIONS = [
tip: '请前往<a href="https://console.bce.baidu.com/iam/#/iam/apikey/list" target="_blank">此处</a>获取 API Key注意本渠道仅支持<a target="_blank" href="https://cloud.baidu.com/doc/WENXINWORKSHOP/s/em4tsqo3v">推理服务 V2</a>相关模型', tip: '请前往<a href="https://console.bce.baidu.com/iam/#/iam/apikey/list" target="_blank">此处</a>获取 API Key注意本渠道仅支持<a target="_blank" href="https://cloud.baidu.com/doc/WENXINWORKSHOP/s/em4tsqo3v">推理服务 V2</a>相关模型',
}, },
{key: 17, text: '阿里通义千问', value: 17, color: 'orange'}, {key: 17, text: '阿里通义千问', value: 17, color: 'orange'},
{key: 18, text: '讯飞星火认知', value: 18, color: 'blue'}, {
key: 18,
text: '讯飞星火认知',
value: 18,
color: 'blue',
tip: '本渠道基于讯飞 WebSocket 版本 API如需 HTTP 版本,请使用<strong>讯飞星火认知 V2</strong>渠道',
},
{
key: 48,
text: '讯飞星火认知 V2',
value: 48,
color: 'blue',
tip: 'HTTP 版本的讯飞接口,前往<a href="https://console.xfyun.cn/services/cbm" target="_blank">此处</a>获取 HTTP 服务接口认证密钥',
},
{key: 16, text: '智谱 ChatGLM', value: 16, color: 'violet'}, {key: 16, text: '智谱 ChatGLM', value: 16, color: 'violet'},
{key: 19, text: '360 智脑', value: 19, color: 'blue'}, {key: 19, text: '360 智脑', value: 19, color: 'blue'},
{key: 25, text: 'Moonshot AI', value: 25, color: 'black'}, {key: 25, text: 'Moonshot AI', value: 25, color: 'black'},