mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-04-18 04:27:28 +00:00
12 lines
331 B
Go
12 lines
331 B
Go
package constant
|
|
|
|
type EndpointType string
|
|
|
|
const (
|
|
EndpointTypeOpenAI EndpointType = "openai"
|
|
EndpointTypeOpenAIResponse EndpointType = "openai-response"
|
|
EndpointTypeAnthropic EndpointType = "anthropic"
|
|
EndpointTypeGemini EndpointType = "gemini"
|
|
EndpointTypeJinaRerank EndpointType = "jina-rerank"
|
|
)
|