update
Browse files- plugins/gptold.js +44 -2
plugins/gptold.js
CHANGED
@@ -17,6 +17,14 @@ const GptRoutes = express.Router();
|
|
17 |
import fs from "fs";
|
18 |
import got from "got";
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
/**
|
21 |
* @swagger
|
22 |
* /api/v1/ai/openai/whisper-large-v3-turbo:
|
@@ -139,8 +147,6 @@ GptRoutes.get('/api/v1/ai/deepseek/deepseek-r1-distill-qwen-32b', authenticateAp
|
|
139 |
}
|
140 |
});
|
141 |
|
142 |
-
|
143 |
-
|
144 |
/**
|
145 |
* @swagger
|
146 |
* /api/v1/ai/deepseek/deepseek-R1:
|
@@ -260,6 +266,42 @@ GptRoutes.get('/api/v1/ai/qwen/qwen1.5-1.8b-chat', authenticateApiKeyPremium, ap
|
|
260 |
}
|
261 |
});
|
262 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
/**
|
264 |
* @swagger
|
265 |
* /api/v1/ai/alibaba/qwen-plus:
|
|
|
17 |
import fs from "fs";
|
18 |
import got from "got";
|
19 |
|
20 |
+
const SYSTEMSUNDA = `
|
21 |
+
hey, kowe! Ayo, yuk, ngobrol-ngobrol sembari bacot! Kita bakal ngebahas apa wae, sak suka kowe! Sijine, jangan lali, luwe arep ngucap sing lucu-lucu, supaya kabeh pada ketawa! Nanging elinga, jangan kebangetan annoying, ya! Njaluk kowe baper! Saiki, yuk mulai, ngomong bab apa dhisik?
|
22 |
+
|
23 |
+
- pake bahasa Gaul
|
24 |
+
- Error anjing bug (Pyrogram dan Python)
|
25 |
+
- ga usah tanya kocak
|
26 |
+
`;
|
27 |
+
|
28 |
/**
|
29 |
* @swagger
|
30 |
* /api/v1/ai/openai/whisper-large-v3-turbo:
|
|
|
147 |
}
|
148 |
});
|
149 |
|
|
|
|
|
150 |
/**
|
151 |
* @swagger
|
152 |
* /api/v1/ai/deepseek/deepseek-R1:
|
|
|
266 |
}
|
267 |
});
|
268 |
|
269 |
+
/**
|
270 |
+
* @swagger
|
271 |
+
* /api/v1/ai/akenox/lu-sunda:
|
272 |
+
* get:
|
273 |
+
* summary: Custom Sunda AI
|
274 |
+
* tags: [AI]
|
275 |
+
* parameters:
|
276 |
+
* - in: query
|
277 |
+
* name: query
|
278 |
+
* required: true
|
279 |
+
* description: User's input query
|
280 |
+
* schema:
|
281 |
+
* type: string
|
282 |
+
* - in: header
|
283 |
+
* name: x-api-key
|
284 |
+
* required: true
|
285 |
+
* description: API key for authentication
|
286 |
+
* schema:
|
287 |
+
* type: string
|
288 |
+
* responses:
|
289 |
+
* 200:
|
290 |
+
* description: Success
|
291 |
+
*/
|
292 |
+
GptRoutes.get('/api/v1/ai/akenox/lu-sunda', authenticateApiKeyPremium, apiLimiter, async (req, res) => {
|
293 |
+
try {
|
294 |
+
const query = req.query.query;
|
295 |
+
const results = await AlibabaTogether(query, {
|
296 |
+
system_prompt: SYSTEMSUNDA
|
297 |
+
});
|
298 |
+
|
299 |
+
res.json({ results });
|
300 |
+
} catch (error) {
|
301 |
+
res.status(401).json({ error: error.message });
|
302 |
+
}
|
303 |
+
});
|
304 |
+
|
305 |
/**
|
306 |
* @swagger
|
307 |
* /api/v1/ai/alibaba/qwen-plus:
|