-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.js
35 lines (34 loc) · 1.46 KB
/
test.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
const Code2Prompt = require('../index');
const { z } = require('zod');
require('dotenv').config();
!async function(){
// Example usage
const options = {
path: "../",
extensions: ["js"], // Specify the extensions to filter for
//template: 'templates/default.hbs',
template: 'templates/write-readme.md',
ignore: ["**/node_modules/**"], // Specify patterns to ignore
OPENAI_KEY: process.env.OPENAI_KEY // Optional OpenAI API key; needed for 'request' method
};
const code2Prompt = new Code2Prompt(options);
const prompt = await code2Prompt.generateContextPrompt();
// view generated codebase prompt
//console.log(prompt);
// calling test
console.log('generating call ..');
//const test0 = await code2Prompt.run('template-name');
const test = await code2Prompt.request("Generate a detailed readme markdown file from the given codebase. Add a 'request' method call example as well. Consider this project is consumed as a library.",
z.object({
readme: z.string().describe('The generated contents of the readme file'),
}
));
// test.data = { readme: 'The generated contents of the readme file' }
console.log('test:',test);
// save test.data.readme to a file
try {
const fs = require('fs').promises;
await fs.writeFile('README-generated.md', test.data.readme);
console.log('saved to file README-generated.md ..');
} catch(err) {}
}();