simplified

This commit is contained in:
David Zhang 2025-02-03 17:46:28 -08:00
parent fc217a2d19
commit a9ae24556c

View File

@ -27,15 +27,15 @@ async function run() {
const breadth =
parseInt(
await askQuestion(
'Enter research breadth (recommended 3-10, default 6): ',
'Enter research breadth (recommended 2-10, default 4): ',
),
10,
) || 6;
) || 4;
const depth =
parseInt(
await askQuestion('Enter research depth (recommended 1-5, default 3): '),
await askQuestion('Enter research depth (recommended 1-5, default 2): '),
10,
) || 3;
) || 2;
console.log(`Creating research plan...`);