From d7d7dc273eca308604128c4d51d8cca8f07045bc Mon Sep 17 00:00:00 2001 From: bendtherules Date: Fri, 27 Mar 2026 17:49:32 +0530 Subject: [PATCH] fix(ingest): fix any type for index --- setup/ingest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/ingest.ts b/setup/ingest.ts index 30b473e..e34d0dc 100644 --- a/setup/ingest.ts +++ b/setup/ingest.ts @@ -97,7 +97,7 @@ async function main() { console.log("Building index (this might take a while with local Ollama)..."); const BATCH_SIZE = 50; - let index: any; + let index: VectorStoreIndex | null = null; // Try to load existing index if any try {