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