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
feat(conversations): opt-in browser-storage mode for conversations
Add an optional mode where conversations are stored in IndexedDB on the
user's device instead of MongoDB. Gated by a new env var
PUBLIC_ENABLE_LOCAL_CONVERSATIONS (default false) and a user setting
useLocalConversations — production behavior is unchanged unless both
are enabled.
When the user opts in, the homepage routes new chats to /local/<uuid>,
backed by IndexedDB on the client and a new stateless streaming endpoint
POST /api/v2/chat/stream on the server. The existing /conversation/[id]
flow and persistence layer are untouched.
https://claude.ai/code/session_01GSjF6LBivXS8ZryKsWDzjc
0 commit comments