File size: 932 Bytes
3b6afc0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
const { Tool } = require('langchain/tools');

class SelfReflectionTool extends Tool {
  constructor({ message, isGpt3 }) {
    super();
    this.reminders = 0;
    this.name = 'self-reflection';
    this.description =
      'Take this action to reflect on your thoughts & actions. For your input, provide answers for self-evaluation as part of one input, using this space as a canvas to explore and organize your ideas in response to the user\'s message. You can use multiple lines for your input. Perform this action sparingly and only when you are stuck.';
    this.message = message;
    this.isGpt3 = isGpt3;
    // this.returnDirect = true;
  }

  async _call(input) {
    return this.selfReflect(input);
  }

  async selfReflect() {
    if (this.isGpt3) {
      return 'I should finalize my reply as soon as I have satisfied the user\'s query.';
    } else {
      return '';
    }
  }
}

module.exports = SelfReflectionTool;