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
Example Errors
chainlit - ERROR - Database error: index row size 2856 exceeds btree version 4 maximum 2704 for index "Thread_name_idx"
chainlit - ERROR - Database error: index row requires 11488 bytes, maximum size is 8191
As the thread name comes from the first message, it may be too long for the index to handle?
Not sure if this is a Datalayer or Chainlit issue.
The text was updated successfully, but these errors were encountered:
Thank you @mihidumh, I added @@index[name]) to speed the search on threads, but didn't limit what gets sent to the data layer. PR 1733 corrects this oversight.
Example Errors
chainlit - ERROR - Database error: index row size 2856 exceeds btree version 4 maximum 2704 for index "Thread_name_idx"
chainlit - ERROR - Database error: index row requires 11488 bytes, maximum size is 8191
As the thread name comes from the first message, it may be too long for the index to handle?
Not sure if this is a Datalayer or Chainlit issue.
The text was updated successfully, but these errors were encountered: