Skip to content

Commit

Permalink
fix: force disable IngestionPipeline vector stores
Browse files Browse the repository at this point in the history
  • Loading branch information
634750802 committed Jun 25, 2024
1 parent e32d921 commit 5fe0cc0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/llamaindex/indexDocument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export function createIndexIngestionPipeline (
docStoreStrategy: 'upserts' as any,
disableCache: true,
});
pipeline.vectorStores = undefined;
return wrapLlamaindexIndexPipeline(reader, async (document) => {
return pipeline.run({
documents: [document],
Expand Down

0 comments on commit 5fe0cc0

Please sign in to comment.