-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautobabytermux.js
801 lines (731 loc) · 29.4 KB
/
autobabytermux.js
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
var YOUR_API_KEY = 'set me please';
//Global Settings:
//Enable termux-api 'help helper': termux-api cmds have their help @ '-help' OR '--help' OR '-h' OR sometimes no hook at all. Sometimes the help is @ stdout.. OR stderr. Sometimes the command hangs for 15 seconds first. I finally wrote a long convoluted and tiresome script to aggregate them all into a json file. Turning this on means you want REPL calls to '-h' to return text from the json instead of watching the Agent bomb out for eleventy tries.
USE_HELP_HELPER = true;
// (requires: npm install minisearch) Enable 'Memory' chain of events. Previous completed tasks will be searched and top match included in conversation. Agent will also be prompted after successful 'Finish' with titling and saving new memory.
ENABLE_MEMORY = true;
//Show 'Task:' sub-prompts in output.
DISPLAY_TASK_PROMPTS = true;
//Show unfiltered responses from API in console? Uglier, but needed for debugging.
DISPLAY_UNFILTERED = true;
//Max allowed requests to the API per Question. This includes ALL prompts including retries.
TOTAL_ALLOWED_REQS = 30;
//Max allowed response tokens( token = 'half a word' they say.) Getting away with smaller responses will make it cheaper to use, but too small and the outputs will be broken
MAX_TOKENS = 200;
//If LLM doesnt follow input request, how many attempts at re-prompting PER STEP do we try before giving up? Note that retries count toward global TOTAL_ALLOWED_REQS.
RETRIES_COUNT = 3;
//Termux-api Plugin. Allowed commands.
TERMUX_COMMANDS = [
//'termux-am',
'termux-media-player',
//'termux-am-socket',
'termux-media-scan',
//'termux-api-start',
'termux-microphone-record',
//'termux-api-stop',
'termux-nfc', 'termux-audio-info', 'termux-notification',
//'termux-backup',
'termux-notification-list', 'termux-battery-status', 'termux-notification-remove', 'termux-brightness', 'termux-open', 'termux-call-log', 'termux-open-url',
//'termux-camera-info',
//'termux-reload-settings',
'termux-camera-photo',
//'termux-reset',
//'termux-change-repo',
//'termux-restore',
//'termux-chroot',
'termux-sensor', 'termux-clipboard-get',
//'termux-setup-package-manager',
'termux-clipboard-set',
//'termux-setup-storage',
'termux-contact-list', 'termux-share',
//'termux-create-package',
'termux-sms-inbox', 'termux-dialog', 'termux-sms-list',
//'termux-download',
'termux-sms-send',
//'termux-elf-cleaner',
'termux-speech-to-text', 'termux-fingerprint', 'termux-storage-get',
//'termux-fix-shebang',
'termux-telephony-call',
//'termux-gui-dialog',
'termux-telephony-cellinfo',
//'termux-gui-dmenu',
'termux-telephony-deviceinfo', 'termux-gui-files', 'termux-toast', 'termux-gui-lockscreen-notes', 'termux-torch',
//'termux-gui-pkg',
//'termux-tts-engines',
//'termux-gui-pm',
'termux-tts-speak',
//'termux-gui-proot-distro',
'termux-usb',
//'termux-gui-shell',
'termux-vibrate',
//'termux-gui-view',
'termux-volume', 'termux-info', 'termux-wake-lock',
//'termux-infrared-frequencies',
'termux-wake-unlock',
//'termux-infrared-transmit',
'termux-wallpaper',
//'termux-job-scheduler',
'termux-wifi-connectioninfo',
//'termux-keystore',
'termux-wifi-enable', 'termux-location', 'termux-wifi-scaninfo'
];
//end of settings area.
const {
exec
} = require('child_process');
const fs = require('fs');
const vm = require('vm');
const readline = require('readline');
let termux_help;
if (USE_HELP_HELPER) {
let helpData;
try {
helpData = fs.readFileSync('help.json');
termux_help = JSON.parse(helpData);
} catch (e) {
termux_help = {};
console.log('Error: Couldnt load help.json, returning empty object: ', e)
}
}
let miniSearch;
let MiniSearch;
let memories = [];
if (ENABLE_MEMORY) {
//npm install minisearch
MiniSearch = require('minisearch')
miniSearch = new MiniSearch({
fields: ['title', 'text'], // fields to index for full-text search
storeFields: ['title', 'text'] // fields to return with search results
})
// Example memories structure:
let memories_ex = [{
id: 1,
title: 'Speak battery status out loud',
text: `REPL[ termux.batteryStatus().then((status) => { try { status=JSON.parse(status); let stats = "The current battery status is " + status["health"] + ", " + status["percentage"] + " percent."; termux.ttsSpeak(stats);console.log('Battery status spoken.')}catch(e){termux.ttsSpeak('Sorry, something went wrong.')} }); ];`,
category: 'repl'
}, ];
//get memories:
try {
const data = fs.readFileSync('memories.json');
memories = JSON.parse(data);
} catch (err) {
console.error('Error: memories.json empty or corrupt, creating new file.')
fs.writeFileSync('memories.json', JSON.stringify(memories_ex));
memories = memories_ex
}
// Index all documents
miniSearch.addAll(memories)
}
var global_history = `Available Plugins:
* Node.js REPL:
REPL[inputString]
Usage: This is a sandboxed Node.js REPL, it is NOT a bash prompt. There is a single-directory file saving and reading mechanism: fs.readFileSync & fs.writeFileSync are the only 'fs' methods that work, and no '/' dir hierarchy exists. Also, the global ALLOWED_FUNCTIONS array contains a READ-ONLY list of all modules in the sandbox.
* Termux-api:
Usage: Ex:'termux-tts-speak -r1 "hello world"' IS EQUAL TO: 'termux.ttsSpeak("-r1 hello world")' in the REPL. Available commands are listed in termux.availableCommands. The methods all return Promises, so .then() chaining is required.
Rules:
Pay attention to command outputs! Each line begins with 'Prefix: ' to signify input type. You will be informed after each step what your next task is. Task history will be listed here:
[EXAMPLE]
Question: use termux-api to speak the battery status.
Observation: The Termux-api available commands are at termux.availableCommands.
Thought: I will list the available plugins and look for something appropriate.
Action: REPL[ console.log(termux.availableCommands) ]
Result:
console.log: 'batteryStatus,ttsSpeak,toast,notificationList,smsList,vibrate,notification
stdout:N/A
stderr:N/A
Thought: I can use the command 'batteryStatus' and 'ttsSpeak' in the REPL. I dont know its usage but I can check that by calling it with '-h'.
Action: REPL[ try { termux.batteryStatus('-h').then(r=>console.log(r)) } catch(e) { cnosole.log('Error: batteryStatus has no command line help:',e ) } ]
Result:
console.log: '{"health": "GOOD","percentage": 23,"plugged": "UNPLUGGED","status": "DISCHARGING","temperature": 42, "current": -1337}'
'Usage: termux-battery-status Get the status of the device battery. Returns a JSON object.'
stdout:NA
stderr:NA
Thought:I now know how to complete the current Question.
Action.REPL[ termux.batteryStatus().then((status) => { try { status=JSON.parse(status); let stats = "The current battery status is " + status["health"] + ", " + status["percentage"] + " percent."; termux.ttsSpeak(stats);console.log('Try success.')}catch(e){termux.ttsSpeak('Sorry, something went wrong.')} }) ]
Result:
console.log: Try success.
stdout: N/A
stderr: N/A
[/EXAMPLE]
[BEGIN]
HINT: Read memories carefully to skip steps by leveraging what you have already learned.
Question: `;
async function loadModules() {
const openaiModule = await import("openai");
const {
Configuration,
OpenAIApi
} = openaiModule;
const configuration = new Configuration({
apiKey: YOUR_API_KEY,
});
const openai = new OpenAIApi(configuration);
async function generateOutput(message) {
const prompt = message.trim();
let attempts = 0;
let hasFinished = false;
let output = null;
while (attempts < 3 && !hasFinished) {
try {
attempts++;
const response = await openai.createChatCompletion({
model: "gpt-3.5-turbo",
messages: [{
role: "user",
content: prompt
}],
});
const {
choices,
error
} = response.data;
if (error) {
console.log(C_Red, '-------------API Error/Timeout attempt #' + attempts) //:\n',error.message);
}
if (Array.isArray(choices)) {
output = choices[0].message.content.trim();
} else {
output = choices.trim();
}
hasFinished = true;
} catch (e) {
console.log(C_Red, '-------------API Error/Timeout attempt #' + attempts)
}
}
return output;
}
///....////
//keep generateOutput clean: wrapper with added
//logging/parsing/history prepending/retry/counting/etc.
async function apiReq(message, prefix) {
//if message begins with 'Task:', post to console:
if (message.startsWith('Task:') && DISPLAY_TASK_PROMPTS) {
console.log(C_White, message)
}
let prompt = global_history + '\n' + message;
let response;
//manage retries
for (let i = 0; i < RETRIES_COUNT && req_count < TOTAL_ALLOWED_REQS; i++) {
req_count += 1;
response = await generateOutput(prompt);
if (DISPLAY_UNFILTERED) console.log(C_BrightBlack, '[' + i + ']Unfiltered: ' + response + '\n[' + i + ']')
const validatedInput = inputValidator(response, prefix);
if (validatedInput !== null) {
console.log(C_Yellow, '[ ' + req_count + ' ] ' + prefix + ':')
console.log(C_Green, validatedInput)
//'action_REPL' logs the code str _after_ extraction, prob rarely ever matters.
if (prefix != "YesNo" && prefix != 'Action') global_history += '\n' + prefix + ': ' + validatedInput
//console.log('\n>>> ',prefix+': '+ validatedInput)
return validatedInput;
} else {
console.log(C_BrightBlack, '[ ' + RETRIES_COUNT + ' ] : [ ' + prefix + ' ] Response Rejected.')
}
}
return null;
}
//response validator.
function inputValidator(input, prefix) {
if (prefix == 'YesNo') {
const yesNoRegex = /^(Answer: )?(yes|no).*?$/i;
if (yesNoRegex.test(input)) {
return input.replace(/^Answer: /, '');
}
return null;
} else {
const prefixes = ['Action', 'Result', 'Thought', 'Question', 'Observation', 'Finish', 'Task'];
const prefixStr = `${prefix}:`;
// Check if the input starts with the prefix
if (!input.startsWith(prefixStr)) {
return null;
}
// Find the index of the next occurrence of a prefix
let index = input.length;
for (let i = 0; i < prefixes.length; i++) {
const prefix = prefixes[i];
const prefixStr = `${prefix}:`;
const prefixIndex = input.indexOf(prefixStr, prefixStr.length);
if (prefixIndex !== -1 && prefixIndex < index) {
index = prefixIndex;
}
}
// Extract the valid input and trim it
const result = input.slice(prefixStr.length, index).trim();
return result.length > 0 ? result : null;
}
};
/////
async function action_REPL(command) {
console.log(C_Blue, '>>>>>>>>>>>>>>>>>>>> Plugin: REPL[]: >>>>>>>>>>>>>>>>>>>>\n');
console.log(C_Blue, 'Plugin: REPL[ ' + command + ' ]:\n')
let evald = await sandbox_run(command);
global_history += '\nAction: REPL[' + command + ']'
let resultString = '\nResult: \nstdout: ' + (evald.stdout || 'N/A') + '\nstderr: ' + (evald.stderr || 'N/A') + '\nconsole.log: ' + (evald.v_console || 'N/A') + '\n';
global_history += resultString
console.log(C_Blue, '>>>>' + resultString + '>>>>');
console.log(C_Blue, '<<<<<<<<<<<<<<<<<<<< END OF Plugin: REPL[] <<<<<<<<<<<<<<<<<<<<\n')
} //end action_REPL
//to keep delegator readable
function parseActionStatement(input) {
try {
//get Plugin name
const argsn = /^(.*?)\[/;
const m2 = argsn.exec(input);
let actionName;
if (m2[1] && m2[1].length > 1) {
actionName = m2[1].trim().toLowerCase();
} else {
return null;
}
//get Plugin input str. regex abs refuses to cooperate, so we found our own way to get first/last bracket location.
const lastBracketIndex = input.lastIndexOf("]");
const firstBracketIndex = input.indexOf("[");
const actionArgs = input.substring(firstBracketIndex + 1, lastBracketIndex);
//save to obj
input = {
actionName,
actionArgs
}
return input;
} catch (e) {
//console.log('Caught: malformed Action statement, skipping:',e)
return null;
}
} //end parseActionStatement
//prompt flow delegator
var req_count = 1;
async function delegator(question) {
let observation;
let thought;
let action;
let result;
let unfinished = true;
let first_pass = true;
while (unfinished && req_count < TOTAL_ALLOWED_REQS) {
if (!observation) {
// Step 2: Retrieve an observation
let p;
let q = 'Question: ' + question + '\n';
if (first_pass) p = q + 'Task: Create a one-line "Observation: " statement informed by the current Question above. Follow the style shown.'
if (!first_pass) p = 'Task: Create a one-line "Observation: " statement informed by the history and Result above. Take special note of the above stdout, stderr and console.log outputs. What did you learn? Knowing what you know now, Whats the next step to solving this problem / answering this question?'
observation = await apiReq(p, 'Observation');
// memory branch
if (ENABLE_MEMORY && first_pass) {
let results = miniSearch.search(question + ' : ' + observation);
if (results.length >= 1) {
results = results.slice(0, 3); // 1. Return top three results
let prompt = `The memory plugin has retrieved the following memories that may be related to your current task:\n\n`;
for (let i = 0; i < results.length; i++) {
prompt += `${i + 1}. ${results[i].title}\n`;
}
prompt += `\nTask: Enter the number of the memory that you want to revise to help solve or answer the question above. If none of the memories are related to the current task, enter "Choice: 0" Otherwise, enter "Choice: [1|2|3]".\n`;
console.log(C_Yellow, prompt)
let choice = parseInt(await apiReq(prompt, 'Choice')); // 2. Prompt as a numbered list and get choice
if (choice >= 1 && choice <= results.length) {
let selectedResult = results[choice - 1];
let selectedResult_pretty = `\nTitle: "${selectedResult.title}",\nContents: "${selectedResult.text}"\n`;
let second_p = `Task: Revise the above memory into an "Action: " statement to solve current task: "${q.replace("Question: ","").trim()}"`
console.log(C_Yellow, selectedResult_pretty + second_p)
let newRevision = await apiReq(selectedResult_pretty + second_p, 'Action');
observation = true;
thought = true;
action = newRevision;
} else {
console.log(`The selected option is invalid.`);
}
}
} // end ENABLE_MEMORY
} //end !observation
///
if (!thought) {
// Step 3: Generate a thought about how to take action
let p = 'Task: Generate a one-line "Thought: " statement: What is step 1 in solving the task (or sub task) by using the REPL plugin?'
thought = await apiReq(p, 'Thought');
} //end Thought
if (!action) {
// Step 3: Generate action/plugin request.
let p = 'Task: Using the thought you just generated, create an "Action: " statement that can be executed using the REPL plugin. Syntax: "Action: REPL[ your js code here ]" (without quotes). '
action = await apiReq(p, 'Action');
} //end Action
if (observation && thought && action) {
// Step 4: Take action using a plugin
let actionObj = parseActionStatement(action)
//console.log('\n--------ACTION OBJ:\n',actionObj,'\n----------END ACTION OBJ\n')
if (actionObj.actionName == 'repl') {
result = await action_REPL(actionObj.actionArgs);
}
if (actionObj.actionName == 'search') {
result = "'Error: Search Plugin deactivated.'"
}
// Step 5: Determine if the result answers the question
let p = `Task: Respond with Yes or No. Are all three statements true? 1.Your code completed without error. 2.Your code printed the expected output. 3.You completed all the necessary sub-tasks to fully answer the current question or complete the task. The answer is NO if any one of those is false. Based on your findings, have you fully answered the current question or completed the task? If there are any remaining steps needed, respond with No.`
let prompt = await apiReq(p, 'YesNo');
if (prompt && prompt.toLowerCase().startsWith('yes')) {
// Step 6a: Compose a finish statement
let p = 'Task: Provide a "Finish: " statement: your conclusion based on above history, answering the Question in full.'
let blah = await apiReq(p, 'Finish');
unfinished = false;
req_count = 1;
//memory save:
if (ENABLE_MEMORY) {
let timeLeft = 5;
let interval = setInterval(() => {
console.log(`Defaults to 'No' in : ${timeLeft} seconds`);
timeLeft--;
}, 1000);
let timeout = setTimeout(() => {
console.log('Memory not saved.');
clearInterval(interval);
break;
}, 5000);
const answer = await new Promise(resolve => {
rl.question('Save the final action to memories? (Y/N) ', (answer) => {
clearTimeout(timeout);
clearInterval(interval);
resolve(answer);
});
});
if (answer.toLowerCase() === 'y') {
clearTimeout(timeout);
clearInterval(interval);
let isUniqueAction = memories.every(memory => !memory.text.includes(actionObj.actionArgs));
if (isUniqueAction) {
// create new memory:
let p = 'Task: Read this action: `' + action + '`. Now, title this action appropriately. Respond with a Title: (syntax: "Title: <5-10 word descriptive searchable phrase>")'
// do get
await apiReq(p, 'Title').then(newMemoryTitle => {
const highestId = memories.reduce((maxId, memory) => {
return memory.id > maxId ? memory.id : maxId;
}, 0);
memories.push({
id: highestId + 1,
title: newMemoryTitle,
text: action,
category: 'repl'
})
// save to file.
fs.writeFileSync('./memories.json', JSON.stringify(memories));
console.log('Memory saved!');
}).catch(error => {
console.error(error);
console.log('Memory not saved.');
})
} else {
console.log('Memory non-unique, save skipped.')
break;
}
} else {
console.log('User selects No, Memory not saved.');
break;
}
break;
} // end memory block
} else { //Yes/No was 'no':
// Step 6b: Start Again at Thought by deleting Thought & Action & Obs
first_pass = false;
observation = null;
thought = null;
action = null;
}
} //end last if clause.
} //end while true
if (req_count >= TOTAL_ALLOWED_REQS) {
console.log(C_Red, 'Error: Exceeded API request limit. TOTAL_ALLOWED_REQS = ' + TOTAL_ALLOWED_REQS + '\n')
req_count = 1;
return 1;
}
} //end delegator function
//run!
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
async function run() {
process.on('uncaughtException', (err) => {
console.log('(Un)caught exception:', err);
console.log('Press Enter to continue or Ctrl-C to exit');
process.stdin.once('data', () => {});
});
let inputString = '';
try {
inputString = process.argv[2].slice(1, -1).trim();
} catch (e) {
inputString = '';
}
virtualFs.init();
if (inputString != '') {
await delegator(inputString);
} else {
console.log('>>> Welcome. Entering "*s" at any time will switch to VM interpreter. <<<')
while (true) {
let input = await new Promise((resolve) => {
rl.question('Enter Question: ', resolve);
});
if (!input.startsWith('*s')) {
await delegator(input);
}
if (input.startsWith('*s')) {
console.log("'exit' to exit.")
while (input != 'exit') {
//start over till 'exit'
input = await new Promise((resolve) => {
rl.question('[vm] >>> ', resolve);
});
let response = await sandbox_run(input)
console.log(response)
};
}
}
}
console.log('<<<< Goodbye. <<<<')
rl.close();
} //end run.
run().catch((e) => console.error(e));
} //END loadModules context.
loadModules().catch(error => {
console.error(`Failed to load modules: ${error}`);
});
/////
//// everything below is sandbox code:
//fakefs area:
function fakefs_do(mode, obj) {
if (mode === 'put') {
try {
let data = {};
if (fs.existsSync('fakefs.txt')) {
const content = fs.readFileSync('fakefs.txt', 'utf8');
data = JSON.parse(content);
}
data = {
...obj,
...data
};
const content = JSON.stringify(data);
fs.writeFileSync('fakefs.txt', content);
return 'success';
} catch (e) {
sandbox.v_stdout = "";
sandbox.v_stderr = 'Error: "' + Object.keys(obj) + '" save FAILED.\n'
}
} else if (mode === 'get') {
try {
const content = fs.readFileSync('fakefs.txt', 'utf-8');
return JSON.parse(content);
} catch (e) {
console.log("Could not load fakefs.txt, (returning empty object): ", e)
return {}
};
} else {
throw new Error('Invalid mode: ' + mode);
}
};
//cheap virtual fs so Agent can have persistent
//'files' in memory:
var virtualFs = {
files: {},
readFileSync: function(path, options) {
if (path.includes('/')) {
sandbox.v_stderr += "Error: No paths allowed in single-dir filesystem. use filename.ext only.";
return;
}
this.files = fakefs_do('get', this.files);
const file = this.files[path];
if (!file) {
sandbox.v_stderr += `ENOENT: no such file or directory, open '${path}'\n`
return null;
}
return file;
},
writeFileSync: function(path, data, options) {
if (path.includes('/')) {
sandbox.v_stderr += "Error: No paths allowed in single-dir filesystem. use filename.ext only.";
return;
}
this.files[path] = data;
let retval = fakefs_do('put', this.files);
if (retval == 'success') {
sandbox.v_stdout += '"' + path + '" saved successfully.\n';
}
},
init: function() {
//attach error messages to every other fs method:
for (const method in fs) {
if (method !== 'readFileSync' && method !== 'writeFileSync' && typeof fs[method] === 'function') {
sandbox.fs[method] = function(...args) {
sandbox.v_stderr += 'Error: "fs.' + method + '" method is not available in sandbox. Available "fs" methods: [ "fs.readFileSync", "fs.writeFileSync" ]\n';
}
}
};
}
}; //end virtualFs
//termux-<command> Plugin. Gets allowed commands from array in settings area.
//camelCase from termux-camel-case
const termux = {
availableCommands: TERMUX_COMMANDS.map(cmd => cmd.replace(/^termux-/, '').replace(/-([a-z])/g, (_, c) => c.toUpperCase()).replace(/-/g, ''))
};
for (const cmd of TERMUX_COMMANDS) {
const propName = cmd.replace(/^termux-/, '').replace(/-([a-z])/g, (_, c) => c.toUpperCase()).replace(/-/g, '');
termux[propName] = async function(...args) {
if (USE_HELP_HELPER && args.includes('-h')) {
const help = termux_help[cmd]?.help || `No help found for ${propName}`;
return help;
} else {
let command = cmd;
if (args.length > 0) {
command += ` ${args.join(' ')}`;
}
return new Promise((resolve, reject) => {
exec(command, (err, stdout, stderr) => {
if (err) {
reject('Error: ' + err);
} else {
if (stdout && stdout.trim().length > 0) {
sandbox.v_stdout += stdout.trim() + '\n'
resolve(stdout.trim());
} else {
sandbox.v_stdout += 'Success: "' + propName + '" command completed successfully, but with no output.\n'
resolve('Success: "' + propName + '" command completed successfully, but with no output.\n')
}
}
});
});
}
};
}
//sandhox 'vm'. anything not listed in allowedFunctions will refuse to import (in a way that the LLM can see AND doesnt crash the vm or the script.)
//sandbox config:
const allowedFunctions = ['setTimeout', 'setInterval', 'clearTimeout', 'clearInterval', 'setImmediate', 'clearImmediate', 'Buffer', 'crypto', 'http', 'https', 'querystring', 'string_decoder', 'util', 'zlib', 'stream', 'tls', 'net', 'dgram', 'os', 'path', 'url', 'punycode', 'string_decoder', 'tty', 'constants', 'vm', 'Math'];
//allow AA to list whats allowed so we dont have to watch it try/fail 100 ways in the dark(hopefully). Edit: no its still an idiot and will try stuff that doesnt work endlessly and never check this list. Not sure how to prompt it to..? seek dox in the environment? TODO.
const ALLOWED_FUNCTIONS = [...allowedFunctions];
const sandbox = {
...global,
ALLOWED_FUNCTIONS,
termux,
fs: {
readFileSync: function(path, options) {
virtualFs.readFileSync(path, options);
},
writeFileSync: function(path, data, options) {
callback = virtualFs.writeFileSync(path, data, options)
}
},
v_stdout: "",
v_stderr: "",
v_console: "",
console: {
log: (...args) => {
sandbox.v_console += args.join(' ') + '\n';
},
error: (...args) => {
sandbox.v_stderr += args.join(' ') + '\n';
}
},
process: Object.assign({}, process, {
stdout: {
write: (chunk, encoding = 'utf8', callback) => {
sandbox.v_stdout += chunk.toString();
if (callback) {
callback();
}
}
},
stderr: {
write: (chunk, encoding = 'utf8', callback) => {
sandbox.v_stderr += chunk.toString(encoding);
if (callback) {
callback();
}
}
}
}),
require: function(moduleName) {
if (moduleName !== 'fs') { //fake fs override
if (!allowedFunctions.includes(moduleName)) {
sandbox.v_stderr += `Import Error: Module "${moduleName}" is not allowed in this sandbox.`;
}
return require(moduleName);
} else {
return sandbox.fs
}
},
module: module,
exports: typeof exports !== 'undefined' ? exports : {},
__dirname: typeof __dirname !== 'undefined' ? __dirname : "",
__filename: typeof __filename !== 'undefined' ? __filename : "",
};
for (const func of allowedFunctions) {
if (func != 'fs') {
sandbox[func] = global[func];
}
}
//sandbox shared/reused instance
var vm_instance = vm.createContext(sandbox)
async function sandbox_run(code) {
//reset output logs
sandbox.v_stdout = "";
sandbox.v_stderr = "";
sandbox.v_console = "";
//catch vm throws INSIDE vm so LLM can see them.
//the [0] & [1] prefix is to help see where things were thrown.
try {
code = `
try {
${code}
} catch (e)
{ process.stderr.write('[0]'+e);
};
`;
// Execute the code in the vm context
await vm.runInContext(code, vm_instance);
// Wait for 100ms to allow time for the output to be captured
await new Promise(resolve => setTimeout(resolve, 100));
} catch (error) {
console.log('[1] Sandbox Error: Caught: ', error)
if (typeof sandbox.v_console == 'undefined') sandbox.v_console = 'NA';
if (typeof sandbox.v_stderr == 'undefined') sandbox.v_stderr = 'NA';
return {
stderr: error.toString(),
v_console: sandbox.v_console,
stdout: sandbox.v_stdout
};
}
//not caught, so
//we pass results 'up'.
v_console = sandbox.v_console || 'N/A.'
v_stdout = sandbox.v_stdout || 'N/A.'
v_stderr = sandbox.v_stderr || 'N/A.'
//why does console response often(perhaps always?) start with 'undefined'? dont care moving on
if (typeof v_console == 'string' && v_console.startsWith('undefined')) v_console = v_console.substring(9)
return {
v_console: v_console,
stdout: v_stdout,
stderr: v_stderr
}
} //END of sandbox context
//assign console colors to
// 'C_<color>' for easy use in logging
function assignConsoleColors() {
const consoleColors = {
Black: '\x1b[30m%s\x1b[0m',
Red: '\x1b[31m%s\x1b[0m',
Green: '\x1b[32m%s\x1b[0m',
Yellow: '\x1b[33m%s\x1b[0m',
Blue: '\x1b[34m%s\x1b[0m',
Magenta: '\x1b[35m%s\x1b[0m',
Cyan: '\x1b[36m%s\x1b[0m',
White: '\x1b[37m%s\x1b[0m',
BrightBlack: '\x1b[90m%s\x1b[0m',
BrightRed: '\x1b[91m%s\x1b[0m',
BrightGreen: '\x1b[92m%s\x1b[0m',
BrightYellow: '\x1b[93m%s\x1b[0m',
BrightBlue: '\x1b[94m%s\x1b[0m',
BrightMagenta: '\x1b[95m%s\x1b[0m',
BrightCyan: '\x1b[96m%s\x1b[0m'
};
for (const color in consoleColors) {
if (consoleColors.hasOwnProperty(color)) {
global[`C_${color}`] = consoleColors[color];
}
}
return consoleColors;
};
assignConsoleColors()