docs: message history and message store example (#7697)

* move-legacy

* screenshot

* fix-incorrect-cache-location

* message-store-and-message-history-examples

* cleanup
This commit is contained in:
Mendon Kissling 2025-04-22 15:04:26 -04:00 committed by GitHub
commit 845f65b9aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 80 additions and 68 deletions

View file

@ -15,7 +15,13 @@ This page details the following memory configuration options in Langflow.
## Local Langflow database tables
The default storage option in Langflow is a [SQLite](https://www.sqlite.org/) database located at `langflow/src/backend/base/langflow/langflow.db`. The following tables are stored in `langflow.db`:
The default storage option in Langflow is a [SQLite](https://www.sqlite.org/) database stored in your system's cache directory:
- Linux/WSL: `~/.cache/langflow/langflow.db`
- macOS: `/Users/<username>/Library/Caches/langflow/langflow.db`
- Windows: `%LOCALAPPDATA%\langflow\langflow\Cache\langflow.db`
The following tables are stored in `langflow.db`:
**User** - Stores user account information including credentials, permissions, and profiles. For more information, see [Authentication](/configuration-authentication).