-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype.js
More file actions
130 lines (113 loc) · 4.24 KB
/
type.js
File metadata and controls
130 lines (113 loc) · 4.24 KB
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
const csv = require("csv-parser");
const fs = require("fs");
const OpenAI = require("openai");
const openai = new OpenAI(process.env.OPENAI_API_KEY);
function delay(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
let delayTime = 5;
const maxDelay = 60000;
function formatCsvField(field) {
if (field === null || field === undefined) {
return '';
}
let formattedField = String(field);
const needsDoubleQuotes = /[",\n]/.test(formattedField);
formattedField = formattedField.replace(/"/g, '""');
if (needsDoubleQuotes) {
formattedField = `"${formattedField}"`;
}
return formattedField;
}
async function exponentialBackoff() {
await delay(delayTime);
delayTime = Math.min(delayTime * 2, maxDelay);
}
async function generateOrImproveText(prompt, maxTokens = 1000) {
try {
// console.log(`Generating or improving text for prompt: ${prompt}`);
const response = await openai.chat.completions.create({
model: "gpt-3.5-turbo",
messages: [
{
role: 'system',
content: 'You are an English Shopify store owner and you need help with your product descriptions and SEO. You are working with columns in a product list, and should only provide the value for the column and no surrounding text.'
},
{
role: 'user',
content: prompt
}
],
max_tokens: maxTokens,
temperature: 0.8,
});
delayTime = 5;
return response.choices[0].message.content.trim();
} catch (error) {
if (error.code === "rate_limit_exceeded") {
console.error("Error with OpenAI API: Rate limit exceeded. Applying exponential backoff.");
await exponentialBackoff();
return generateOrImproveText(prompt, maxTokens); // Retry the request
} else {
console.error("Error with OpenAI API:", error);
return null;
}
}
}
async function processCsvRow(row, rowIndex) {
console.log(`Processing row ${rowIndex + 1}`);
if (row.Type) {
// row.Type = await generateOrImproveText(`I am selling ${row.Title} and I need can only use one word as a type, the list I have so far is: "${row.Type}". Please select the most suitable type for my product based on this list and only return me the value for the column. YOU MUST USE THE GIVEN LIST OF TYPES AND CANNOT ADD ANY NEW TYPES. IT MUST BE ONE OF THE TYPES IN THE LIST.`);
row.Type = row.Type.replace(/^"|"$/g, '');
}
// await delay(5);
return row;
}
async function readAndProcessCsv(filePath) {
console.log(`Starting to process CSV file: ${filePath}`);
const processedRows = [];
return new Promise((resolve, reject) => {
const stream = fs.createReadStream(filePath)
.pipe(csv())
.on("error", (error) => {
console.error("Error reading CSV file:", error);
reject(error);
});
let rowIndex = 0;
(async () => {
try {
for await (const row of stream) {
const processedRow = await processCsvRow(row, rowIndex++);
processedRows.push(processedRow);
await delay(5); // Ensure there's a delay between processing rows
}
console.log("CSV file successfully processed");
resolve(processedRows); // Resolve after all rows have been processed
} catch (error) {
reject(error); // Properly handle and reject on error
}
})();
});
}
async function main() {
const filePath = process.argv[2];
const processedProducts = await readAndProcessCsv(filePath);
console.log(`Processed ${processedProducts.length} products.`);
const newFilePath = filePath.replace(".csv", `-processed-${Math.floor(Date.now() / 1000)}.csv`);
const csvWriter = fs.createWriteStream(newFilePath, { flags: "w" });
if (processedProducts.length > 0) {
const headers = Object.keys(processedProducts[0]).map(formatCsvField).join(",");
csvWriter.write(headers + "\n");
processedProducts.forEach((product) => {
const row = Object.values(product).map(formatCsvField).join(",");
csvWriter.write(row + "\n");
});
csvWriter.on('finish', () => {
console.log(`Processed products written to ${newFilePath}`);
});
csvWriter.end();
} else {
console.log("No products to process.");
}
}
main();