This commit is contained in:
Alex Garcia 2024-07-31 12:56:02 -07:00
parent ca0a5eef5c
commit e91ccf38ff

View file

@ -25,9 +25,9 @@ const width = 60;
console.log(
"▓".repeat((progress < 0 ? 0 : progress) * width) +
"░".repeat((1 - progress) * width) +
` (${TOTAL - numTotal}/${TOTAL})`
` (${TOTAL - numTotal}/${TOTAL})`,
);
console.log();
console.log(
`${(progress * 100.0).toPrecision(2)}% complete to sqlite-vec v0.1.0`
`${(progress * 100.0).toPrecision(2)}% complete to sqlite-vec v0.1.0`,
);