-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathprocessRepository.ts
460 lines (409 loc) · 11.1 KB
/
processRepository.ts
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
import fs from 'node:fs/promises';
import path from 'node:path';
import { Md5 } from 'ts-md5';
import { OpenAIChat } from 'langchain/llms';
import { encoding_for_model } from '@dqbd/tiktoken';
import { APIRateLimit } from '../../utils/APIRateLimit.js';
import {
createCodeFileSummary,
createCodeQuestions,
folderSummaryPrompt,
} from './prompts.js';
import {
AutodocRepoConfig,
FileSummary,
FolderSummary,
LLMModelDetails,
LLMModels,
ProcessFile,
ProcessFolder,
} from '../../../types.js';
import { traverseFileSystem } from '../../utils/traverseFileSystem.js';
import {
spinnerSuccess,
stopSpinner,
updateSpinnerText,
} from '../../spinner.js';
import {
getFileName,
githubFileUrl,
githubFolderUrl,
} from '../../utils/FileUtil.js';
import { models } from '../../utils/LLMUtil.js';
import { selectModel } from './selectModel.js';
export const processRepository = async (
{
name: projectName,
repositoryUrl,
root: inputRoot,
output: outputRoot,
llms,
priority,
maxConcurrentCalls,
addQuestions,
ignore,
filePrompt,
folderPrompt,
contentType,
targetAudience,
linkHosted,
}: AutodocRepoConfig,
dryRun?: boolean,
) => {
const rateLimit = new APIRateLimit(maxConcurrentCalls);
const callLLM = async (
prompt: string,
model: OpenAIChat,
): Promise<string> => {
return rateLimit.callApi(() => model.call(prompt));
};
const isModel = (model: LLMModelDetails | null): model is LLMModelDetails =>
model !== null;
const processFile: ProcessFile = async ({
fileName,
filePath,
projectName,
contentType,
filePrompt,
targetAudience,
linkHosted,
}): Promise<void> => {
const content = await fs.readFile(filePath, 'utf-8');
/**
* Calculate the checksum of the file content
*/
const newChecksum = await calculateChecksum([content]);
/**
* if an existing .json file exists,
* it will check the checksums and decide if a reindex is needed
*/
const reindex = await shouldReindex(
path.join(outputRoot, filePath.substring(0, filePath.lastIndexOf('\\'))),
fileName.replace(/\.[^/.]+$/, '.json'),
newChecksum,
);
if (!reindex) {
return;
}
const markdownFilePath = path.join(outputRoot, filePath);
const url = githubFileUrl(repositoryUrl, inputRoot, filePath, linkHosted);
const summaryPrompt = createCodeFileSummary(
projectName,
projectName,
content,
contentType,
filePrompt,
);
const questionsPrompt = createCodeQuestions(
projectName,
projectName,
content,
contentType,
targetAudience,
);
const prompts = addQuestions
? [summaryPrompt, questionsPrompt]
: [summaryPrompt];
const model = selectModel(prompts, llms, models, priority);
if (!isModel(model)) {
// console.log(`Skipped ${filePath} | Length ${max}`);
return;
}
function convertToModel(model: LLMModels) {
// convert gpt-4o-mini to GPT4o using encoding_for_model
// Not in @dqbd/tiktoken model_to_encoding.json
if (model == 'gpt-4o-mini') {
return LLMModels.GPT4o;
}
return model
}
const encoding = encoding_for_model(convertToModel(model.name));
const summaryLength = encoding.encode(summaryPrompt).length;
const questionLength = encoding.encode(questionsPrompt).length;
try {
if (!dryRun) {
/** Call LLM */
const response = await Promise.all(
prompts.map(async (prompt) => callLLM(prompt, model.llm)),
);
/**
* Create file and save to disk
*/
const file: FileSummary = {
fileName,
filePath,
url,
summary: response[0],
questions: addQuestions ? response[1] : '',
checksum: newChecksum,
};
const outputPath = getFileName(markdownFilePath, '.', '.json');
const content =
file.summary.length > 0 ? JSON.stringify(file, null, 2) : '';
/**
* Create the output directory if it doesn't exist
*/
try {
await fs.mkdir(markdownFilePath.replace(fileName, ''), {
recursive: true,
});
await fs.writeFile(outputPath, content, 'utf-8');
} catch (error) {
console.error(error);
return;
}
// console.log(`File: ${fileName} => ${outputPath}`);
}
/**
* Track usage for end of run summary
*/
model.inputTokens += summaryLength;
if (addQuestions) model.inputTokens += questionLength;
model.total++;
model.outputTokens += 1000;
model.succeeded++;
} catch (e) {
console.log(e);
console.error(`Failed to get summary for file ${fileName}`);
model.failed++;
}
};
const processFolder: ProcessFolder = async ({
folderName,
folderPath,
projectName,
contentType,
folderPrompt,
shouldIgnore,
linkHosted,
}): Promise<void> => {
/**
* For now we don't care about folders
*
* TODO: Add support for folders during estimation
*/
if (dryRun) return;
const contents = (await fs.readdir(folderPath)).filter(
(fileName) => !shouldIgnore(fileName),
);
/**
* Get the checksum of the folder
*/
const newChecksum = await calculateChecksum(contents);
/**
* If an existing summary.json file exists,
* it will check the checksums and decide if a reindex is needed
*/
const reindex = await shouldReindex(
folderPath,
'summary.json',
newChecksum,
);
if (!reindex) {
return;
}
// eslint-disable-next-line prettier/prettier
const url = githubFolderUrl(
repositoryUrl,
inputRoot,
folderPath,
linkHosted,
);
const allFiles: (FileSummary | null)[] = await Promise.all(
contents.map(async (fileName) => {
const entryPath = path.join(folderPath, fileName);
const entryStats = await fs.stat(entryPath);
if (entryStats.isFile() && fileName !== 'summary.json') {
const file = await fs.readFile(entryPath, 'utf8');
return file.length > 0 ? JSON.parse(file) : null;
}
return null;
}),
);
try {
const files = allFiles.filter(
(file): file is FileSummary => file !== null,
);
const allFolders: (FolderSummary | null)[] = await Promise.all(
contents.map(async (fileName) => {
const entryPath = path.join(folderPath, fileName);
const entryStats = await fs.stat(entryPath);
if (entryStats.isDirectory()) {
try {
const summaryFilePath = path.resolve(entryPath, 'summary.json');
const file = await fs.readFile(summaryFilePath, 'utf8');
return JSON.parse(file);
} catch (e) {
console.log(`Skipped: ${folderPath}`);
return null;
}
}
return null;
}),
);
const folders = allFolders.filter(
(folder): folder is FolderSummary => folder !== null,
);
const summaryPrompt = folderSummaryPrompt(
folderPath,
projectName,
files,
folders,
contentType,
folderPrompt,
);
const model = selectModel([summaryPrompt], llms, models, priority);
if (!isModel(model)) {
// console.log(`Skipped ${filePath} | Length ${max}`);
return;
}
const summary = await callLLM(summaryPrompt, model.llm);
const folderSummary: FolderSummary = {
folderName,
folderPath,
url,
files,
folders: folders.filter(Boolean),
summary,
questions: '',
checksum: newChecksum,
};
const outputPath = path.join(folderPath, 'summary.json');
await fs.writeFile(
outputPath,
JSON.stringify(folderSummary, null, 2),
'utf-8',
);
// console.log(`Folder: ${folderName} => ${outputPath}`);
} catch (e) {
console.log(e);
console.log(`Failed to get summary for folder: ${folderPath}`);
}
};
/**
* Get the number of files and folders in the project
*/
const filesAndFolders = async (): Promise<{
files: number;
folders: number;
}> => {
let files = 0;
let folders = 0;
await Promise.all([
traverseFileSystem({
inputPath: inputRoot,
projectName,
processFile: () => {
files++;
return Promise.resolve();
},
ignore,
filePrompt,
folderPrompt,
contentType,
targetAudience,
linkHosted,
}),
traverseFileSystem({
inputPath: inputRoot,
projectName,
processFolder: () => {
folders++;
return Promise.resolve();
},
ignore,
filePrompt,
folderPrompt,
contentType,
targetAudience,
linkHosted,
}),
]);
return {
files,
folders,
};
};
const { files, folders } = await filesAndFolders();
/**
* Create markdown files for each code file in the project
*/
updateSpinnerText(`Processing ${files} files...`);
await traverseFileSystem({
inputPath: inputRoot,
projectName,
processFile,
ignore,
filePrompt,
folderPrompt,
contentType,
targetAudience,
linkHosted,
});
spinnerSuccess(`Processing ${files} files...`);
/**
* Create markdown summaries for each folder in the project
*/
updateSpinnerText(`Processing ${folders} folders... `);
await traverseFileSystem({
inputPath: outputRoot,
projectName,
processFolder,
ignore,
filePrompt,
folderPrompt,
contentType,
targetAudience,
linkHosted,
});
spinnerSuccess(`Processing ${folders} folders... `);
stopSpinner();
/**
* Print results
*/
return models;
};
/**
* Calculates the checksum of all the files in a folder
*/
async function calculateChecksum(contents: string[]): Promise<string> {
const checksums: string[] = [];
for (const content of contents) {
const checksum = Md5.hashStr(content);
checksums.push(checksum);
}
const concatenatedChecksum = checksums.join('');
const finalChecksum = Md5.hashStr(concatenatedChecksum);
return finalChecksum;
}
/**
* Checks if a summary.json file exists.
* If it does, compares the checksums to see if it
* needs to be re-indexed or not.
*/
async function shouldReindex(
contentPath: string,
name: string,
newChecksum: string,
): Promise<boolean> {
const jsonPath = path.join(contentPath, name);
let summaryExists = false;
try {
await fs.access(jsonPath);
summaryExists = true;
} catch (error) {}
if (summaryExists) {
const fileContents = await fs.readFile(jsonPath, 'utf8');
const fileContentsJSON = JSON.parse(fileContents);
const oldChecksum = fileContentsJSON.checksum;
if (oldChecksum === newChecksum) {
console.log(`Skipping ${jsonPath} because it has not changed`);
return false;
} else {
console.log(`Reindexing ${jsonPath} because it has changed`);
return true;
}
}
//if no summary then generate one
return true;
}