This commit is contained in:
Timothy Jaeryang Baek 2024-12-31 13:47:27 -08:00
parent 5ffdb89ace
commit 26280e2c1f

View File

@ -104,6 +104,12 @@ is also being used and set to `True`. Failure to do so will result in the inabil
:::
#### `ENABLE_REALTIME_CHAT_SAVE`
- Type: `bool`
- Default: `True`
- Description: When enabled, the system saves each chunk of streamed chat data to the database in real time to ensure maximum data persistency. This feature provides robust data recovery and allows accurate session tracking. However, the tradeoff is increased latency, as saving to the database introduces a delay. Disabling this feature can improve performance and reduce delays, but it risks potential data loss in the event of a system failure or crash. Use based on your application's requirements and acceptable tradeoffs.
#### `ENABLE_ADMIN_EXPORT`
- Type: `bool`
@ -625,13 +631,6 @@ directly. Ensure that no users are present in the database, if you intend to tur
- Default: `False`
- Description: Enables or disables offline mode.
#### `ENABLE_REALTIME_CHAT_SAVE`
- Type: `bool`
- Default: `True`
- Description: When enabled, the system saves each chunk of streamed chat data to the database in real time to ensure maximum data persistency. This feature provides robust data recovery and allows accurate session tracking. However, the tradeoff is increased latency, as saving to the database introduces a delay. Disabling this feature can improve performance and reduce delays, but it risks potential data loss in the event of a system failure or crash. Use based on your application's requirements and acceptable tradeoffs.
#### `RESET_CONFIG_ON_START`
- Type: `bool`