try out static blobs feature behind SQLITE_VEC_ENABLE_EXPERIMENTAL

This commit is contained in:
Alex Garcia 2024-05-17 12:03:45 -07:00
parent 78505491af
commit f0c9282299
6 changed files with 618 additions and 8 deletions

View file

@ -23,7 +23,7 @@ const progress = (TOTAL - numTotal) / TOTAL;
const width = 60;
console.log(
"▓".repeat(progress * width) +
"▓".repeat((progress < 0 ? 0 : progress) * width) +
"░".repeat((1 - progress) * width) +
` (${TOTAL - numTotal}/${TOTAL})`
);