endpoint_type.go 331 B

1234567891011
  1. package constant
  2. type EndpointType string
  3. const (
  4. EndpointTypeOpenAI EndpointType = "openai"
  5. EndpointTypeOpenAIResponse EndpointType = "openai-response"
  6. EndpointTypeAnthropic EndpointType = "anthropic"
  7. EndpointTypeGemini EndpointType = "gemini"
  8. EndpointTypeJinaRerank EndpointType = "jina-rerank"
  9. )