You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
868 B

  1. package constant
  2. type EndpointType string
  3. const (
  4. EndpointTypeOpenAI EndpointType = "openai"
  5. EndpointTypeOpenAIResponse EndpointType = "openai-response"
  6. EndpointTypeOpenAIResponseCompact EndpointType = "openai-response-compact"
  7. EndpointTypeAnthropic EndpointType = "anthropic"
  8. EndpointTypeGemini EndpointType = "gemini"
  9. EndpointTypeJinaRerank EndpointType = "jina-rerank"
  10. EndpointTypeImageGeneration EndpointType = "image-generation"
  11. EndpointTypeEmbeddings EndpointType = "embeddings"
  12. EndpointTypeOpenAIVideo EndpointType = "openai-video"
  13. //EndpointTypeMidjourney EndpointType = "midjourney-proxy"
  14. //EndpointTypeSuno EndpointType = "suno-proxy"
  15. //EndpointTypeKling EndpointType = "kling"
  16. //EndpointTypeJimeng EndpointType = "jimeng"
  17. )