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"
|
|
)
|