randydev commited on
Commit
4f1f96f
·
verified ·
1 Parent(s): 699c6ab

Update plugins/gptold.js

Browse files
Files changed (1) hide show
  1. plugins/gptold.js +5 -1
plugins/gptold.js CHANGED
@@ -30,7 +30,11 @@ const GptRoutes = express.Router();
30
  GptRoutes.get('/api/v1/ai/nvidia/llama-31-70b', authenticateApiKey, apiLimiter, async (req, res) => {
31
  try {
32
  const query = req.query.query;
33
- const results = await NvidiaTogether(query);
 
 
 
 
34
  res.json({ results });
35
  } catch (error) {
36
  res.status(401).json({ error: error.message });
 
30
  GptRoutes.get('/api/v1/ai/nvidia/llama-31-70b', authenticateApiKey, apiLimiter, async (req, res) => {
31
  try {
32
  const query = req.query.query;
33
+ 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
+ system_prompt = req.query.system_prompt ? req.query.system_prompt : system_prompt;
35
+ const results = await NvidiaTogether(query, {
36
+ system_prompt: system_prompt
37
+ });
38
  res.json({ results });
39
  } catch (error) {
40
  res.status(401).json({ error: error.message });