Update plugins/gptold.js
Browse files- plugins/gptold.js +30 -1
plugins/gptold.js
CHANGED
@@ -1,8 +1,37 @@
|
|
1 |
import express from 'express';
|
2 |
-
import {OpenaiRes} from '../lib/scrapper.js';
|
|
|
3 |
import { authenticateApiKey, apiLimiter } from '../middleware/midware.js';
|
4 |
const GptRoutes = express.Router();
|
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
/**
|
7 |
* @swagger
|
8 |
* /api/v1/ai/gpt-old:
|
|
|
1 |
import express from 'express';
|
2 |
+
import { OpenaiRes } from '../lib/scrapper.js';
|
3 |
+
import { NvidiaTogether } from '../lib/@randydev/together/llama.js';
|
4 |
import { authenticateApiKey, apiLimiter } from '../middleware/midware.js';
|
5 |
const GptRoutes = express.Router();
|
6 |
|
7 |
+
/**
|
8 |
+
* @swagger
|
9 |
+
* /api/v1/ai/nvidia/llama-31-70b:
|
10 |
+
* get:
|
11 |
+
* summary: GPT OLD version turbo
|
12 |
+
* tags: [AI]
|
13 |
+
* parameters:
|
14 |
+
* - in: query
|
15 |
+
* name: query
|
16 |
+
* required: true
|
17 |
+
* description: null
|
18 |
+
* schema:
|
19 |
+
* type: string
|
20 |
+
* responses:
|
21 |
+
* 200:
|
22 |
+
* description: Success
|
23 |
+
*/
|
24 |
+
GptRoutes.get('/api/v1/ai/nvidia/llama-31-70b', authenticateApiKey, apiLimiter, async (req, res) => {
|
25 |
+
try {
|
26 |
+
const query = req.query.query;
|
27 |
+
const results = await NvidiaTogether(query);
|
28 |
+
res.json({ results });
|
29 |
+
} catch (error) {
|
30 |
+
res.status(401).json({ error: error.message });
|
31 |
+
}
|
32 |
+
});
|
33 |
+
|
34 |
+
|
35 |
/**
|
36 |
* @swagger
|
37 |
* /api/v1/ai/gpt-old:
|