Ai proxy support coze (#1387)

This commit is contained in:
rinfx
2024-10-14 12:45:53 +08:00
committed by GitHub
parent 1a53c7b4d3
commit 952c9ec5dc
4 changed files with 68 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ const (
providerTypeMistral = "mistral"
providerTypeCohere = "cohere"
providerTypeDoubao = "doubao"
providerTypeCoze = "coze"
protocolOpenAI = "openai"
protocolOriginal = "original"
@@ -101,6 +102,7 @@ var (
providerTypeMistral: &mistralProviderInitializer{},
providerTypeCohere: &cohereProviderInitializer{},
providerTypeDoubao: &doubaoProviderInitializer{},
providerTypeCoze: &cozeProviderInitializer{},
}
)