You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Initially, we suspected that the main thread was being blocked because of the .readAsDataUrl method used for reading the file, likely due to the overhead of handling large Base64-encoded data. However, even after offloading the file reading process to the Tauri backend by spawning it in a separate thread, the main thread still appears to be blocked.
This leads me to believe the issue might instead be related to how ImageStructs is being handled in ConversationStore.ts.
Currently, file uploads are limited to 15 MB due to concerns about blocking the main thread when handling larger files.
Relies on #124
Possible Solution:
The text was updated successfully, but these errors were encountered: