16 lines
560 B
Go
16 lines
560 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"
|
|
//EndpointTypeMidjourney EndpointType = "midjourney-proxy"
|
|
//EndpointTypeSuno EndpointType = "suno-proxy"
|
|
//EndpointTypeKling EndpointType = "kling"
|
|
//EndpointTypeJimeng EndpointType = "jimeng"
|
|
)
|