mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-29 23:28:39 +00:00
fix streamSupportedChannels
This commit is contained in:
@@ -103,3 +103,9 @@ Use `bun` as the preferred package manager and script runner for the frontend (`
|
|||||||
- `bun run dev` for development server
|
- `bun run dev` for development server
|
||||||
- `bun run build` for production build
|
- `bun run build` for production build
|
||||||
- `bun run i18n:*` for i18n tooling
|
- `bun run i18n:*` for i18n tooling
|
||||||
|
|
||||||
|
### Rule 4: New Channel StreamOptions Support
|
||||||
|
|
||||||
|
When implementing a new channel:
|
||||||
|
- Confirm whether the provider supports `StreamOptions`.
|
||||||
|
- If supported, add the channel to `streamSupportedChannels`.
|
||||||
|
|||||||
@@ -98,3 +98,9 @@ Use `bun` as the preferred package manager and script runner for the frontend (`
|
|||||||
- `bun run dev` for development server
|
- `bun run dev` for development server
|
||||||
- `bun run build` for production build
|
- `bun run build` for production build
|
||||||
- `bun run i18n:*` for i18n tooling
|
- `bun run i18n:*` for i18n tooling
|
||||||
|
|
||||||
|
### Rule 4: New Channel StreamOptions Support
|
||||||
|
|
||||||
|
When implementing a new channel:
|
||||||
|
- Confirm whether the provider supports `StreamOptions`.
|
||||||
|
- If supported, add the channel to `streamSupportedChannels`.
|
||||||
|
|||||||
@@ -98,3 +98,9 @@ Use `bun` as the preferred package manager and script runner for the frontend (`
|
|||||||
- `bun run dev` for development server
|
- `bun run dev` for development server
|
||||||
- `bun run build` for production build
|
- `bun run build` for production build
|
||||||
- `bun run i18n:*` for i18n tooling
|
- `bun run i18n:*` for i18n tooling
|
||||||
|
|
||||||
|
### Rule 4: New Channel StreamOptions Support
|
||||||
|
|
||||||
|
When implementing a new channel:
|
||||||
|
- Confirm whether the provider supports `StreamOptions`.
|
||||||
|
- If supported, add the channel to `streamSupportedChannels`.
|
||||||
|
|||||||
@@ -290,21 +290,24 @@ func (info *RelayInfo) ToString() string {
|
|||||||
|
|
||||||
// 定义支持流式选项的通道类型
|
// 定义支持流式选项的通道类型
|
||||||
var streamSupportedChannels = map[int]bool{
|
var streamSupportedChannels = map[int]bool{
|
||||||
constant.ChannelTypeOpenAI: true,
|
constant.ChannelTypeOpenAI: true,
|
||||||
constant.ChannelTypeAnthropic: true,
|
constant.ChannelTypeAnthropic: true,
|
||||||
constant.ChannelTypeAws: true,
|
constant.ChannelTypeAws: true,
|
||||||
constant.ChannelTypeGemini: true,
|
constant.ChannelTypeGemini: true,
|
||||||
constant.ChannelCloudflare: true,
|
constant.ChannelCloudflare: true,
|
||||||
constant.ChannelTypeAzure: true,
|
constant.ChannelTypeAzure: true,
|
||||||
constant.ChannelTypeVolcEngine: true,
|
constant.ChannelTypeVolcEngine: true,
|
||||||
constant.ChannelTypeOllama: true,
|
constant.ChannelTypeOllama: true,
|
||||||
constant.ChannelTypeXai: true,
|
constant.ChannelTypeXai: true,
|
||||||
constant.ChannelTypeDeepSeek: true,
|
constant.ChannelTypeDeepSeek: true,
|
||||||
constant.ChannelTypeBaiduV2: true,
|
constant.ChannelTypeBaiduV2: true,
|
||||||
constant.ChannelTypeZhipu_v4: true,
|
constant.ChannelTypeZhipu_v4: true,
|
||||||
constant.ChannelTypeAli: true,
|
constant.ChannelTypeAli: true,
|
||||||
constant.ChannelTypeSubmodel: true,
|
constant.ChannelTypeSubmodel: true,
|
||||||
constant.ChannelTypeCodex: true,
|
constant.ChannelTypeCodex: true,
|
||||||
|
constant.ChannelTypeMoonshot: true,
|
||||||
|
constant.ChannelTypeMiniMax: true,
|
||||||
|
constant.ChannelTypeSiliconFlow: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
func GenRelayInfoWs(c *gin.Context, ws *websocket.Conn) *RelayInfo {
|
func GenRelayInfoWs(c *gin.Context, ws *websocket.Conn) *RelayInfo {
|
||||||
|
|||||||
Reference in New Issue
Block a user