-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #96 from Royal-lobster/fix-embeddings-error
- Loading branch information
Showing
3 changed files
with
87 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
"syncia": patch | ||
--- | ||
|
||
Fix storage quota exceeded error for embeddings | ||
|
||
Previously, the application would fail when trying to store large embeddings in localStorage due to quota limitations. This patch: | ||
|
||
- Transitions from localStorage to IndexedDB for storing embeddings | ||
- Implements new functions `saveToIndexedDB` and `getFromIndexedDB` | ||
- Resolves the "QuotaExceededError" when storing large datasets | ||
|
||
This change improves the application's ability to handle larger embeddings without storage constraints. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters