File size: 1,154 Bytes
ca4d525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const { gptlogic } = require('notmebotz-tools');

const handler = async (req, res) => {
  try {
    const { text, logic, key } = req.query;

    if (!text) {
      return res.status(400).json({
        success: false,
        error: 'Missing required parameter: text'
      });
    }

    if (!logic) {
      return res.status(400).json({
        success: false,
        error: 'Missing required parameter: logic'
      });
    }

    if (!key) {
      return res.status(400).json({
        success: false,
        error: 'Missing required parameter: key'
      });
    }

    const result = await gptlogic(text, logic);
    
    res.json({
      author: result.author,
      success: true,
      status: result.status,
      msg: result.msg 
    });

  } catch (error) {
    res.status(500).json({
      success: false,
      error: error.message
    });
  }
};

module.exports = {
  name: 'GPT Logic AI',
  description: 'Generate responses using GPT Logic with custom instructions',
  type: 'GET',
  routes: ['api/AI/gptlogic'],
  tags: ['ai', 'gptlogic', 'custom'],
  main: ['AI'],
  parameters: ['text', 'logic', 'key'],
  enabled: true,
  handler
};