mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-03-30 00:46:42 +00:00
* feat: openai response /v1/response/compact * feat: /v1/response/compact bill * feat: /v1/response/compact * feat: /v1/responses/compact -> codex channel * feat: /v1/responses/compact -> codex channel * feat: /v1/responses/compact -> codex channel * feat: codex channel default models * feat: compact model price * feat: /v1/responses/comapct test
20 lines
868 B
Go
20 lines
868 B
Go
package constant
|
|
|
|
type EndpointType string
|
|
|
|
const (
|
|
EndpointTypeOpenAI EndpointType = "openai"
|
|
EndpointTypeOpenAIResponse EndpointType = "openai-response"
|
|
EndpointTypeOpenAIResponseCompact EndpointType = "openai-response-compact"
|
|
EndpointTypeAnthropic EndpointType = "anthropic"
|
|
EndpointTypeGemini EndpointType = "gemini"
|
|
EndpointTypeJinaRerank EndpointType = "jina-rerank"
|
|
EndpointTypeImageGeneration EndpointType = "image-generation"
|
|
EndpointTypeEmbeddings EndpointType = "embeddings"
|
|
EndpointTypeOpenAIVideo EndpointType = "openai-video"
|
|
//EndpointTypeMidjourney EndpointType = "midjourney-proxy"
|
|
//EndpointTypeSuno EndpointType = "suno-proxy"
|
|
//EndpointTypeKling EndpointType = "kling"
|
|
//EndpointTypeJimeng EndpointType = "jimeng"
|
|
)
|