|
|
@@ -42,7 +42,10 @@ const { Text, Title } = Typography;
|
|
|
// Example endpoint template for quick fill
|
|
|
const ENDPOINT_TEMPLATE = {
|
|
|
openai: { path: '/v1/chat/completions', method: 'POST' },
|
|
|
+ 'openai-response': { path: '/v1/responses', method: 'POST' },
|
|
|
anthropic: { path: '/v1/messages', method: 'POST' },
|
|
|
+ gemini: { path: '/v1beta/models/{model}:generateContent', method: 'POST' },
|
|
|
+ 'jina-rerank': { path: '/rerank', method: 'POST' },
|
|
|
'image-generation': { path: '/v1/images/generations', method: 'POST' },
|
|
|
};
|
|
|
|