fix(ingest): fix any type for index

This commit is contained in:
2026-03-27 17:49:32 +05:30
parent 28c26d319e
commit d7d7dc273e
+1 -1
View File
@@ -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 {