* feat: support claude and gemini in vertex ai * fix: do not show api key field in channel page when the type is VertexAI * fix: update getToken function to include channelId in cache key
24 lines
254 B
Go
24 lines
254 B
Go
package apitype
|
|
|
|
const (
|
|
OpenAI = iota
|
|
Anthropic
|
|
PaLM
|
|
Baidu
|
|
Zhipu
|
|
Ali
|
|
Xunfei
|
|
AIProxyLibrary
|
|
Tencent
|
|
Gemini
|
|
Ollama
|
|
AwsClaude
|
|
Coze
|
|
Cohere
|
|
Cloudflare
|
|
DeepL
|
|
VertexAI
|
|
|
|
Dummy // this one is only for count, do not add any channel after this
|
|
)
|