-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsmartgpt.js
635 lines (497 loc) · 23.9 KB
/
smartgpt.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
// smartgpt.js
import fs from 'fs/promises';
import path from 'path';
import dotenv from 'dotenv';
import { Configuration, OpenAIApi } from "openai";
import minimist from 'minimist';
import cliProgress from 'cli-progress';
dotenv.config();
export const main = async (prompt, numAsks, apiKey = process.env.OPENAI_API_KEY || minimist(process.argv.slice(2)).apiKey, model = "gpt-3.5-turbo-16k") => {
console.log("Starting script...");
if (!apiKey) {
throw new Error("API Key not found. Please check your .env file.");
}
const NUM_ASKS = Number(numAsks); // Standard is 3. User defined.
const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
progressBar.start(NUM_ASKS, 0);
const configuration = new Configuration({
apiKey: apiKey,
});
const openai = new OpenAIApi(configuration);
let maxTokens;
if (model === "gpt-4") {
maxTokens = 7000;
} else if (model === "gpt-3.5-turbo-16k") {
maxTokens = 14000;
} else if (model === "gpt-3.5-turbo") {
maxTokens = 3048;
} else {
throw new Error("Invalid model specified.");
}
//experimental system prompt. Adding more might degrade performance.?
const customSystemPrompt = "You are an autoregressive language model that has been fine-tuned with instruction-tuning and RLHF. You carefully provide accurate, factual, thoughtful, nuanced answers, and are brilliant at reasoning. Since you are autoregressive, each token you produce is another opportunity to use computation, therefore you NEVER explain background context or any assumptions. You always think step-by-step BEFORE you output ANYTHING. You always provide JUST the answer and nothing else.";
const customAssistantPronmpt = "Let's work this out in a step by step way to be sure we have the right answer. Always respond in markdown or when applicable latex format."; //Might degrade performance.
// ASK PHASE *****************
let requests = [];
for (let i = 0; i < NUM_ASKS; i++) {
const messages = [
{ role: "system", content: customSystemPrompt },
{ role: "user", content: prompt },
{ role: "assistant", content: customAssistantPronmpt }
];
requests.push(openai.createChatCompletion({
model: model,
messages: messages,
max_tokens: maxTokens, //This might not help when there are multiple messages. Since they have to get injected into the same prompt.
n: 1,
stop: null,
temperature: 1,
}));
progressBar.update(i + 1);
}
console.log("Requests sent, waiting for responses...");
const responses = await Promise.allSettled(requests);
progressBar.stop();
//Adding an option to prevent the sctipt form continuing if the question is not suitable.
// Logging rejected promises
responses.forEach((response, index) => {
if(response.status === 'rejected') {
console.error(`Request ${index} failed: ${response.reason}`);
}
});
const resolvedResponses = responses.filter(r => r.status === 'fulfilled').map(r => r.value.data.choices[0].message.content);
const initialGptAnswers = resolvedResponses.join('\n\n');
// RESEARCHER PHASE *****************
const researcherPrompt = resolvedResponses.reduce((acc, currentResponse, idx) => {
return acc + `Answer Option ${idx+1}: ${currentResponse} \n\n`;
}, `You are a researcher tasked with investigating the ${NUM_ASKS} response option(s) provided. List the flaws and faulty logic of each answer option. Let's work this out in a step by step way to be sure we have all the errors:`);
const researcherResponse = await openai.createChatCompletion({
model: model,
messages: [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: researcherPrompt },
{ role: "assistant", content: customAssistantPronmpt }
],
max_tokens: maxTokens,
n: 1,
stop: null,
temperature: 0.5,
});
console.log("Researcher Response received, resolving...");
// RESOLVER PHASE *****************
//Removed this Original Prompt: ${prompt}
const resolverPrompt = `You are a resolver tasked with finding which of the ${NUM_ASKS} answer(s) is best. From the Answer(s) and Resarcher analysis find the answer with the least amount of flaws and then resolve that answer. Here is the information you need to use to create the best answer:
Researcher's findings: ${researcherResponse.data.choices[0].message.content}
Answer Options: ${resolvedResponses.join(', ')} `;
const resolverResponse = await openai.createChatCompletion({
model: model,
messages: [
{ role: "system", content: "You are a helpful assistant." },
{ role: "user", content: resolverPrompt },
{ role: "assistant", content: customAssistantPronmpt }
],
max_tokens: maxTokens,
n: 1,
stop: null,
temperature: 0.3,
});
console.log("Resolver Response received, compiling output...");
const finalAnswer = resolverResponse.data.choices[0].message.content;
const gptOutput = [
"# Prompt",
"", prompt, "",
"# Initial GPT Answers",
"", initialGptAnswers, "",
"# Researcher Prompt",
"", researcherPrompt, "",
"# Researcher Response",
"", researcherResponse.data.choices[0].message.content, "",
"# Resolver Prompt",
"", resolverPrompt, "",
"# Resolver Response",
"", resolverResponse.data.choices[0].message.content, "",
"# Final Revised Answer",
"", finalAnswer
].join("\n\n");
const fileName = `${Date.now()}.txt`;
const outputDir = path.join(path.dirname(new URL(import.meta.url).pathname), 'output');
const outputPath = path.join(outputDir, fileName);
try {
await fs.mkdir(outputDir, { recursive: true });
await fs.writeFile(outputPath, gptOutput);
console.log(`Output was successfully saved to ${outputPath}`);
} catch (err) {
console.error("An error occurred while writing the output to a file: ", err);
}
console.log("Script completed successfully!");
const outputURL = `/output/${fileName}`;
return {
prompt: prompt,
numAsks: NUM_ASKS,
researcherResponse: researcherResponse.data.choices[0].message.content,
resolverResponse: resolverResponse.data.choices[0].message.content,
finalAnswer: finalAnswer,
outputURL: outputURL
};
};
// import fs from 'fs/promises';
// import path from 'path';
// import dotenv from 'dotenv';
// import { Configuration, OpenAIApi } from "openai";
// import minimist from 'minimist';
// import cliProgress from 'cli-progress';
// dotenv.config();
// const ROLE_SYSTEM = "system";
// const ROLE_USER = "user";
// const MODEL = "gpt-3.5-turbo-16k";
// const MAX_TOKENS = 14000;
// const N = 1;
// const TEMPERATURE = 1;
// const makeRequest = async (openai, systemPrompt, userPrompt = '') => {
// return openai.createChatCompletion({
// model: MODEL,
// messages: [
// { role: ROLE_SYSTEM, content: systemPrompt },
// { role: ROLE_USER, content: userPrompt }
// ],
// max_tokens: MAX_TOKENS,
// n: N,
// stop: null,
// temperature: TEMPERATURE,
// });
// };
// const writeToFile = async (fileName, content) => {
// const outputDir = path.join(path.dirname(new URL(import.meta.url).pathname), 'output');
// const outputPath = path.join(outputDir, fileName);
// try {
// await fs.mkdir(outputDir, { recursive: true });
// await fs.writeFile(outputPath, content);
// console.log(`Output was successfully saved to ${outputPath}`);
// } catch (err) {
// console.error("An error occurred while writing the output to a file: ", err);
// }
// };
// export const main = async (prompt, numAsks, apiKey = process.env.OPENAI_API_KEY || minimist(process.argv.slice(2)).apiKey) => {
// console.log("Starting script...");
// if (!apiKey) {
// throw new Error("API Key not found. Please check your .env file.");
// }
// const NUM_ASKS = Number(numAsks);
// const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
// progressBar.start(NUM_ASKS, 0);
// const configuration = new Configuration({ apiKey });
// const openai = new OpenAIApi(configuration);
// let resolvedResponses = [];
// for (let i = 0; i < NUM_ASKS; i++) {
// const response = await makeRequest(openai, "You are a helpful assistant.", prompt);
// progressBar.update(i + 1);
// resolvedResponses.push(response);
// }
// progressBar.stop();
// console.log("Responses received, processing...");
// const researcherPrompt = resolvedResponses.reduce((acc, currentResponse, idx) => {
// return acc + `Answer Option ${idx+1}: ${currentResponse.value.data.choices[0].message.content} \n\n`;
// }, `You are a researcher tasked with investigating the ${NUM_ASKS} response options provided. List the flaws and faulty logic of each answer option. Let's work this out in a step by step way to be sure we have all the errors:`);
// const researcherResponse = await makeRequest(openai, researcherPrompt);
// console.log("Researcher Response received, resolving...");
// const resolverPrompt = `You are a resolver tasked with 1) finding which of the ${NUM_ASKS} answer options the researcher thought was best 2) improving that answer, and 3) Printing the improved answer in full. Let's work this out in a step by step way to be sure we have the right answer:`;
// const resolverResponse = await makeRequest(openai, resolverPrompt);
// console.log("Resolver Response received, compiling output...");
// const gptOutput = [
// "# Prompt",
// "", prompt, "",
// "# Researcher Prompt",
// "", researcherPrompt, "",
// "# Researcher Response",
// "", researcherResponse.data.choices[0].message.content, "",
// "# Resolver Prompt",
// "", resolverPrompt, "",
// "# Resolver Response",
// "", resolverResponse.data.choices[0].message.content, ""
// ].join("\n\n");
// const fileName = `${Date.now()}.txt`;
// await writeToFile(fileName, gptOutput);
// console.log("Script completed successfully!");
// const outputURL = `/output/${fileName}`;
// return {
// prompt: prompt,
// numAsks: NUM_ASKS,
// researcherResponse: researcherResponse.data.choices[0].message.content,
// resolverResponse: resolverResponse.data.choices[0].message.content,
// outputURL: outputURL
// };
// };
// refine temp _ working
// import fs from 'fs/promises';
// import path from 'path';
// import dotenv from 'dotenv';
// import { Configuration, OpenAIApi } from "openai";
// import minimist from 'minimist';
// import cliProgress from 'cli-progress';
// dotenv.config();
// const ROLE_SYSTEM = "system";
// const ROLE_USER = "user";
// const ROLE_ASSISTANT = "assistant";
// const MODEL = "gpt-3.5-turbo-16k";
// const MAX_TOKENS = 14000;
// const N = 1;
// const TEMPERATURE = 1;
// const makeRequest = async (openai, prompt) => {
// return openai.createChatCompletion({
// model: MODEL,
// messages: [
// { role: ROLE_SYSTEM, content: "You are a helpful assistant." },
// { role: ROLE_USER, content: prompt },
// { role: ROLE_ASSISTANT, content: "Let's work this out in a step by step way to be sure we have the right answer." }
// ],
// max_tokens: MAX_TOKENS,
// n: N,
// stop: null,
// temperature: TEMPERATURE,
// });
// };
// const writeToFile = async (fileName, content) => {
// const outputDir = path.join(path.dirname(new URL(import.meta.url).pathname), 'output');
// const outputPath = path.join(outputDir, fileName);
// try {
// await fs.mkdir(outputDir, { recursive: true });
// await fs.writeFile(outputPath, content);
// console.log(`Output was successfully saved to ${outputPath}`);
// } catch (err) {
// console.error("An error occurred while writing the output to a file: ", err);
// }
// };
// export const main = async (prompt, numAsks, apiKey = process.env.OPENAI_API_KEY || minimist(process.argv.slice(2)).apiKey) => {
// console.log("Starting script...");
// if (!apiKey) {
// throw new Error("API Key not found. Please check your .env file.");
// }
// const NUM_ASKS = Number(numAsks);
// const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
// progressBar.start(NUM_ASKS, 0);
// const configuration = new Configuration({ apiKey });
// const openai = new OpenAIApi(configuration);
// let resolvedResponses = [];
// for (let i = 0; i < NUM_ASKS; i++) {
// const response = await makeRequest(openai, prompt);
// progressBar.update(i + 1);
// resolvedResponses.push(response);
// }
// progressBar.stop();
// console.log("Responses received, processing...");
// const researcherPrompt = resolvedResponses.reduce((acc, currentResponse, idx) => {
// return acc + `Answer Option ${idx+1}: ${currentResponse.value.data.choices[0].message.content} \n\n`;
// }, `You are a researcher tasked with investigating the ${NUM_ASKS} response options provided. List the flaws and faulty logic of each answer option. Let's work this out in a step by step way to be sure we have all the errors:`);
// const researcherResponse = await makeRequest(openai, researcherPrompt);
// console.log("Researcher Response received, resolving...");
// const resolverPrompt = `You are a resolver tasked with 1) finding which of the ${NUM_ASKS} answer options the researcher thought was best 2) improving that answer, and 3) Printing the improved answer in full. Let's work this out in a step by step way to be sure we have the right answer:`;
// const resolverResponse = await makeRequest(openai, resolverPrompt);
// console.log("Resolver Response received, compiling output...");
// const gptOutput = [
// "# Prompt",
// "", prompt, "",
// "# Researcher Prompt",
// "", researcherPrompt, "",
// "# Researcher Response",
// "", researcherResponse.data.choices[0].message.content, "",
// "# Resolver Prompt",
// "", resolverPrompt, "",
// "# Resolver Response",
// "", resolverResponse.data.choices[0].message.content, ""
// ].join("\n\n");
// const fileName = `${Date.now()}.txt`;
// await writeToFile(fileName, gptOutput);
// console.log("Script completed successfully!");
// const outputURL = `/output/${fileName}`;
// return {
// prompt: prompt,
// numAsks: NUM_ASKS,
// researcherResponse: researcherResponse.data.choices[0].message.content,
// resolverResponse: resolverResponse.data.choices[0].message.content,
// outputURL: outputURL
// };
// };
// WORKING WORKING WORKING
// import fs from 'fs/promises';
// import path from 'path';
// import dotenv from 'dotenv';
// import { Configuration, OpenAIApi } from "openai";
// import minimist from 'minimist';
// import cliProgress from 'cli-progress';
// dotenv.config();
// export const main = async (prompt, numAsks, apiKey = process.env.OPENAI_API_KEY || minimist(process.argv.slice(2)).apiKey, model = "gpt-3.5-turbo-16k") => {
// console.log("Starting script...");
// if (!apiKey) {
// throw new Error("API Key not found. Please check your .env file.");
// }
// const NUM_ASKS = Number(numAsks);
// const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
// progressBar.start(NUM_ASKS, 0);
// const configuration = new Configuration({
// apiKey: apiKey,
// });
// const openai = new OpenAIApi(configuration);
// let requests = [];
// for (let i = 0; i < NUM_ASKS; i++) {
// const messages = [
// { role: "system", content: "You are a helpful assistant." },
// { role: "user", content: prompt },
// { role: "assistant", content: "Let's work this out in a step by step way to be sure we have the right answer." }
// ];
// requests.push(openai.createChatCompletion({
// model: model,
// messages: messages,
// max_tokens: 14000,
// n: 1,
// stop: null,
// temperature: 1,
// }));
// progressBar.update(i + 1);
// }
// console.log("Requests sent, waiting for responses...");
// const responses = await Promise.allSettled(requests);
// progressBar.stop();
// console.log("Responses received, processing...");
// const resolvedResponses = responses.filter(r => r.status === 'fulfilled');
// const researcherPrompt = resolvedResponses.reduce((acc, currentResponse, idx) => {
// return acc + `Answer Option ${idx+1}: ${currentResponse.value.data.choices[0].message.content} \n\n`;
// }, `You are a researcher tasked with investigating the ${NUM_ASKS} response options provided. List the flaws and faulty logic of each answer option. Let's work this out in a step by step way to be sure we have all the errors:`);
// const researcherResponse = await openai.createChatCompletion({
// model: model,
// messages: [
// { role: "system", content: "You are helpful assistant." },
// { role: "user", content: researcherPrompt },
// { role: "assistant", content: "Let's work this out in a step by step way to be sure we have the right answer." }
// ],
// max_tokens: 14000,
// n: 1,
// stop: null,
// temperature: 1,
// });
// console.log("Researcher Response received, resolving...");
// const resolverPrompt = `You are a resolver tasked with 1) finding which of the ${NUM_ASKS} answer options the researcher thought was best 2) improving that answer, and 3) Printing the improved answer in full. Let's work this out in a step by step way to be sure we have the right answer:`;
// const resolverResponse = await openai.createChatCompletion({
// model: model,
// messages: [
// { role: "system", content: "You are a helpful assistant." },
// { role: "user", content: resolverPrompt },
// { role: "assistant", content: "Let's work this out in a step by step way to be sure we have the right answer." }
// ],
// max_tokens: 14000,
// n: 1,
// stop: null,
// temperature: 1,
// });
// console.log("Resolver Response received, compiling output...");
// const gptOutput = [
// "# Prompt",
// "", prompt, "",
// "# Researcher Prompt",
// "", researcherPrompt, "",
// "# Researcher Response",
// "", researcherResponse.data.choices[0].message.content, "",
// "# Resolver Prompt",
// "", resolverPrompt, "",
// "# Resolver Response",
// "", resolverResponse.data.choices[0].message.content, ""
// ].join("\n\n");
// const fileName = `${Date.now()}.txt`;
// const outputDir = path.join(path.dirname(new URL(import.meta.url).pathname), 'output');
// const outputPath = path.join(outputDir, fileName);
// // Write output to a file
// try {
// await fs.mkdir(outputDir, { recursive: true });
// await fs.writeFile(outputPath, gptOutput);
// console.log(`Output was successfully saved to ${outputPath}`);
// } catch (err) {
// console.error("An error occurred while writing the output to a file: ", err);
// }
// console.log("Script completed successfully!");
// const outputURL = `/output/${fileName}`;
// return {
// prompt: prompt,
// numAsks: NUM_ASKS,
// researcherResponse: researcherResponse.data.choices[0].message.content,
// resolverResponse: resolverResponse.data.choices[0].message.content,
// outputURL: outputURL
// };
// };
// OG CODE
// import fs from 'fs/promises';
// import path from 'path';
// import dotenv from 'dotenv';
// import { ChatGPTAPI } from "chatgpt";
// import minimist from 'minimist';
// import cliProgress from 'cli-progress';
// dotenv.config();
// export const main = async (prompt, numAsks, apiKey = process.env.OPENAI_API_KEY || minimist(process.argv.slice(2)).apiKey, model = "gpt-4") => {
// console.log("Starting script...");
// if (!apiKey) {
// throw new Error("API Key not found. Please check your .env file.");
// }
// const NUM_ASKS = Number(numAsks);
// const progressBar = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
// progressBar.start(NUM_ASKS, 0);
// const api = new ChatGPTAPI({
// apiKey: apiKey,
// completionParams: {
// model: model,
// temperature: 1
// },
// });
// let requests = [];
// for (let i = 0; i < NUM_ASKS; i++) {
// const message = `Question: ${prompt} \n\n Answer: Let's work this out in a step by step way to be sure we have the right answer.`;
// requests.push(api.sendMessage(message));
// progressBar.update(i + 1);
// }
// console.log("Requests sent, waiting for responses...");
// const responses = await Promise.allSettled(requests);
// progressBar.stop();
// console.log("Responses received, processing...");
// const resolvedResponses = responses.filter(r => r.status === 'fulfilled');
// const researcherPrompt = resolvedResponses.reduce((acc, currentResponse, idx) => {
// return acc + `Answer Option ${idx+1}: ${currentResponse.value.text} \n\n`;
// }, `# Question: ${prompt} \n\n `)
// + `You are a researcher tasked with investigating the ${NUM_ASKS} response options provided. List the flaws and faulty logic of each answer option. Let's work this out in a step by step way to be sure we have all the errors:`;
// const researcherResponse = await api.sendMessage(researcherPrompt);
// console.log("Researcher Response received, resolving...");
// const researcherId = researcherResponse.id;
// const resolverPrompt = `You are a resolver tasked with 1) finding which of the ${NUM_ASKS} answer options the researcher thought was best 2) improving that answer, and 3) Printing the improved answer in full. Let's work this out in a step by step way to be sure we have the right answer:`;
// const resolverResponse = await api.sendMessage(resolverPrompt, {
// parentMessageId: researcherId,
// });
// console.log("Resolver Response received, compiling output...");
// const gptOutput = [
// "# Prompt",
// "", prompt, "",
// "# Researcher Prompt",
// "", researcherPrompt, "",
// "# Researcher Response",
// "", researcherResponse.text, "",
// "# Resolver Prompt",
// "", resolverPrompt, "",
// "# Resolver Response",
// "", resolverResponse.text, ""
// ].join("\n\n");
// const fileName = `${Date.now()}.txt`;
// const outputDir = path.join(path.dirname(new URL(import.meta.url).pathname), 'output');
// const outputPath = path.join(outputDir, fileName);
// // Write output to a file
// try {
// await fs.mkdir(outputDir, { recursive: true });
// await fs.writeFile(outputPath, gptOutput);
// console.log(`Output was successfully saved to ${outputPath}`);
// } catch (err) {
// console.error("An error occurred while writing the output to a file: ", err);
// }
// console.log("Script completed successfully!");
// const outputURL = `/output/${fileName}`;
// return {
// prompt: prompt,
// numAsks: NUM_ASKS,
// researcherResponse: researcherResponse.text,
// resolverResponse: resolverResponse.text,
// outputURL: outputURL
// };
// };