Update plugins/gptold.js
Browse files- plugins/gptold.js +44 -0
plugins/gptold.js
CHANGED
@@ -2,6 +2,7 @@ import express from 'express';
|
|
2 |
import { OpenaiRes } from '../lib/scrapper.js';
|
3 |
import { audioContent } from '../lib/all.js';
|
4 |
import { NvidiaTogether } from '../lib/@randydev/together/llama.js';
|
|
|
5 |
import { CohereAI } from '../lib/@randydev/together/cohere.js';
|
6 |
import {
|
7 |
AlibabaTogether,
|
@@ -127,6 +128,49 @@ GptRoutes.get('/api/v1/ai/deepseek/deepseek-R1', authenticateApiKeyPremium, apiL
|
|
127 |
}
|
128 |
});
|
129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
/**
|
131 |
* @swagger
|
132 |
* /api/v1/ai/qwen/qwen1.5-1.8b-chat:
|
|
|
2 |
import { OpenaiRes } from '../lib/scrapper.js';
|
3 |
import { audioContent } from '../lib/all.js';
|
4 |
import { NvidiaTogether } from '../lib/@randydev/together/llama.js';
|
5 |
+
import { CloudFlareMistralTogether } from '../lib/@randydev/together/cloudflare-ai.js';
|
6 |
import { CohereAI } from '../lib/@randydev/together/cohere.js';
|
7 |
import {
|
8 |
AlibabaTogether,
|
|
|
128 |
}
|
129 |
});
|
130 |
|
131 |
+
/**
|
132 |
+
* @swagger
|
133 |
+
* /api/v1/ai/mistral/mistral-7b-instruct-v0.1:
|
134 |
+
* get:
|
135 |
+
* summary: Mistral AI
|
136 |
+
* tags: [AI]
|
137 |
+
* parameters:
|
138 |
+
* - in: query
|
139 |
+
* name: query
|
140 |
+
* required: true
|
141 |
+
* description: User's input query
|
142 |
+
* schema:
|
143 |
+
* type: string
|
144 |
+
* - in: query
|
145 |
+
* name: system_prompt
|
146 |
+
* required: false
|
147 |
+
* description: Custom system prompt
|
148 |
+
* schema:
|
149 |
+
* type: string
|
150 |
+
* - in: header
|
151 |
+
* name: x-api-key
|
152 |
+
* required: true
|
153 |
+
* description: API key for authentication
|
154 |
+
* schema:
|
155 |
+
* type: string
|
156 |
+
* responses:
|
157 |
+
* 200:
|
158 |
+
* description: Success
|
159 |
+
*/
|
160 |
+
GptRoutes.get('/api/v1/ai/mistral/mistral-7b-instruct-v0.1', authenticateApiKeyPremium, apiLimiter, async (req, res) => {
|
161 |
+
try {
|
162 |
+
const query = req.query.query;
|
163 |
+
const system_prompt = req.query.system_prompt || "Your name is AkenoX AI A kind and friendly AI assistant that answers in a short and concise answer. Give short step-by-step reasoning if required.";
|
164 |
+
|
165 |
+
const results = await CloudFlareMistralTogetherTogether(query, {
|
166 |
+
system_prompt: system_prompt
|
167 |
+
});
|
168 |
+
res.json({ results });
|
169 |
+
} catch (error) {
|
170 |
+
res.status(401).json({ error: error.message });
|
171 |
+
}
|
172 |
+
});
|
173 |
+
|
174 |
/**
|
175 |
* @swagger
|
176 |
* /api/v1/ai/qwen/qwen1.5-1.8b-chat:
|