Update plugins/gptold.js
Browse files- plugins/gptold.js +2 -2
plugins/gptold.js
CHANGED
@@ -34,7 +34,7 @@ const GptRoutes = express.Router();
|
|
34 |
* 200:
|
35 |
* description: Success
|
36 |
*/
|
37 |
-
GptRoutes.get('/api/v1/ai/cohere/command-plus',
|
38 |
try {
|
39 |
const query = req.query.query;
|
40 |
let system_prompt = "Your name is AkenoX AI A kind and friendly AI assistant that answers in\na short and concise answer. Give short step-by-step reasoning if required.\n";
|
@@ -77,7 +77,7 @@ GptRoutes.get('/api/v1/ai/cohere/command-plus', authenticateApiKey, apiLimiter,
|
|
77 |
* 200:
|
78 |
* description: Success
|
79 |
*/
|
80 |
-
GptRoutes.get('/api/v1/ai/nvidia/llama-31-70b',
|
81 |
try {
|
82 |
const query = req.query.query;
|
83 |
let system_prompt = "Your name is AkenoX AI A kind and friendly AI assistant that answers in\na short and concise answer. Give short step-by-step reasoning if required.\n";
|
|
|
34 |
* 200:
|
35 |
* description: Success
|
36 |
*/
|
37 |
+
GptRoutes.get('/api/v1/ai/cohere/command-plus', authenticateApiKeyPremium, apiLimiter, async (req, res) => {
|
38 |
try {
|
39 |
const query = req.query.query;
|
40 |
let system_prompt = "Your name is AkenoX AI A kind and friendly AI assistant that answers in\na short and concise answer. Give short step-by-step reasoning if required.\n";
|
|
|
77 |
* 200:
|
78 |
* description: Success
|
79 |
*/
|
80 |
+
GptRoutes.get('/api/v1/ai/nvidia/llama-31-70b', authenticateApiKeyPremium, apiLimiter, async (req, res) => {
|
81 |
try {
|
82 |
const query = req.query.query;
|
83 |
let system_prompt = "Your name is AkenoX AI A kind and friendly AI assistant that answers in\na short and concise answer. Give short step-by-step reasoning if required.\n";
|