-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathutilities.js
86 lines (70 loc) · 2.79 KB
/
utilities.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
const {OpenAI} = require("openai");
const fs = require('fs').promises;
async function executeOpenAIWithRetry(params, retries = 3, backoff = 2500, rateLimitRetry = 10, timeoutOverride = 27500) {
const RATE_LIMIT_RETRY_DURATION = 61000; // 61 seconds
const openai = new OpenAI({
apiKey: process.env.OPENAI_API_KEY,
});
let attempts = 0;
let rateLimitAttempts = 0;
let error;
let result;
while (attempts < retries) {
try {
result = await Promise.race([
openai.chat.completions.create(params),
new Promise((_, reject) =>
setTimeout(() => reject(new Error(`Request took longer than ${timeoutOverride / 1000} seconds`)), timeoutOverride)
)
]);
//console.log(result);
return result.choices[0].message.content.trim();
} catch (e) {
error = e;
attempts++;
// If we hit a rate limit
if (e.response && e.response.status === 429 && rateLimitAttempts < rateLimitRetry) {
console.log(`Hit rate limit. Sleeping for 61s...`);
await sleep(RATE_LIMIT_RETRY_DURATION);
rateLimitAttempts++;
continue; // Don't increase backoff time, just retry
}
// Exponential backoff with jitter
const delay = (Math.pow(2, attempts) * backoff) + (backoff * Math.random());
console.log(`Attempt ${attempts} failed with error: ${e.message}. Retrying in ${delay}ms...`);
await sleep(delay);
}
}
throw error; // If all retries failed, throw the last error encountered
}
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
function fixJSON(input) {
return input
// Fix common errors with local LLM JSON
.replace(/[\u201C\u201D]/g, '"') // Replace curly double quotes with straight double quotes
.replace(/[\u2018\u2019]/g, "'") // Replace curly single quotes with straight single quotes
.replace(/`/g, "'") // Replace backticks with straight single quotes
.replace(/\\_/g, "_") // Replace escaped underscores with unescaped underscores
.replaceAll("'''json\n", '')
.replaceAll("'''", '');
}
async function getLastTimestamp(timestampFilePath) {
try {
const lastTimestamp = await fs.readFile(timestampFilePath, 'utf8');
return lastTimestamp;
} catch (error) {
// If the file doesn't exist, use the current date-time
return new Date().toISOString();
}
}
async function saveLastTimestamp(timestamp, timestampFilePath) {
await fs.writeFile(timestampFilePath, timestamp, 'utf8');
}
module.exports = {
executeOpenAIWithRetry,
fixJSON,
getLastTimestamp,
saveLastTimestamp
};