Ai proxy support doubao (#1337)

This commit is contained in:
rinfx
2024-09-24 18:45:40 +08:00
committed by GitHub
parent dc61bfc5c5
commit bef9139753
3 changed files with 117 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ const (
providerTypeDeepl = "deepl"
providerTypeMistral = "mistral"
providerTypeCohere = "cohere"
providerTypeDoubao = "doubao"
protocolOpenAI = "openai"
protocolOriginal = "original"
@@ -96,6 +97,7 @@ var (
providerTypeDeepl: &deeplProviderInitializer{},
providerTypeMistral: &mistralProviderInitializer{},
providerTypeCohere: &cohereProviderInitializer{},
providerTypeDoubao: &doubaoProviderInitializer{},
}
)