feat: AI 代理 Wasm 插件接入 Together AI (#1617)

This commit is contained in:
VinciWu557
2024-12-23 15:39:56 +08:00
committed by GitHub
parent 4eaf204737
commit 909cc0f088
4 changed files with 183 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ const (
providerTypeCohere = "cohere"
providerTypeDoubao = "doubao"
providerTypeCoze = "coze"
providerTypeTogetherAI = "together-ai"
protocolOpenAI = "openai"
protocolOriginal = "original"
@@ -106,6 +107,7 @@ var (
providerTypeCohere: &cohereProviderInitializer{},
providerTypeDoubao: &doubaoProviderInitializer{},
providerTypeCoze: &cozeProviderInitializer{},
providerTypeTogetherAI: &togetherAIProviderInitializer{},
}
)