mirror of
https://github.com/Mintplex-Labs/vector-admin.git
synced 2026-07-21 16:35:26 -04:00
Drop source loading on document view #30
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @timothycarambat on GitHub (Sep 12, 2023).
Originally assigned to: @timothycarambat on GitHub.
on Document view we do attempt to download the vector-cache file and retain on the client side so can view the text, metadata, and other assets.
However, when the vector-cache is sufficiently large (like 100MB+) the client will fail to parse such a large JSON body, not to mention that it also takes forever to load - if it does.
We can dramatically improve the UX here by dropping the support of trying to read arbitrary-size JSON files since we can just read the metadata exactly from the vector database given that we are using pagination now.