Update plugins/gptold.js
Browse files- plugins/gptold.js +39 -0
plugins/gptold.js
CHANGED
@@ -15,6 +15,7 @@ import {
|
|
15 |
QUOTESSEDIH,
|
16 |
PythonToJS,
|
17 |
JsToPython,
|
|
|
18 |
} from '../models.js';
|
19 |
import {
|
20 |
AlibabaTogether,
|
@@ -339,6 +340,44 @@ GptRoutes.get('/api/v1/ai/akenox/mia-khalifah', authenticateApiKeyPremium, apiLi
|
|
339 |
}
|
340 |
});
|
341 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
/**
|
343 |
* @swagger
|
344 |
* /api/v1/ai/akenox/python-to-js-api:
|
|
|
15 |
QUOTESSEDIH,
|
16 |
PythonToJS,
|
17 |
JsToPython,
|
18 |
+
curlCommandCode,
|
19 |
} from '../models.js';
|
20 |
import {
|
21 |
AlibabaTogether,
|
|
|
340 |
}
|
341 |
});
|
342 |
|
343 |
+
/**
|
344 |
+
* @swagger
|
345 |
+
* /api/v1/ai/akenox/curl-command-code:
|
346 |
+
* get:
|
347 |
+
* summary: Custom Curl Command Converter Python & Javascript AI
|
348 |
+
* tags: [AI]
|
349 |
+
* parameters:
|
350 |
+
* - in: query
|
351 |
+
* name: query
|
352 |
+
* required: true
|
353 |
+
* description: User's input query
|
354 |
+
* schema:
|
355 |
+
* type: string
|
356 |
+
* - in: header
|
357 |
+
* name: x-api-key
|
358 |
+
* required: true
|
359 |
+
* description: API key for authentication
|
360 |
+
* schema:
|
361 |
+
* type: string
|
362 |
+
* responses:
|
363 |
+
* 200:
|
364 |
+
* description: Success
|
365 |
+
*/
|
366 |
+
GptRoutes.get('/api/v1/ai/akenox/curl-command-code', authenticateApiKeyPremium, apiLimiter, async (req, res) => {
|
367 |
+
try {
|
368 |
+
const query = req.query.query;
|
369 |
+
if (!query) {
|
370 |
+
return res.status(500).json({ error: "query required" });
|
371 |
+
}
|
372 |
+
const results = await CloudFlareQwenTogether(query, {
|
373 |
+
system_prompt: curlCommandCode
|
374 |
+
});
|
375 |
+
res.json({ results });
|
376 |
+
} catch (error) {
|
377 |
+
res.status(401).json({ error: error.message });
|
378 |
+
}
|
379 |
+
});
|
380 |
+
|
381 |
/**
|
382 |
* @swagger
|
383 |
* /api/v1/ai/akenox/python-to-js-api:
|