From bdb9fbbf797163f427d1bbb684646ac65c629718 Mon Sep 17 00:00:00 2001 From: Danny Avila Date: Thu, 18 Dec 2025 14:28:16 -0500 Subject: [PATCH] feat: Add USE_REDIS_STREAMS configuration to .env.example - Updated .env.example to include USE_REDIS_STREAMS setting, allowing control over Redis usage for resumable LLM streams. - Provided additional context on the behavior of USE_REDIS_STREAMS when not explicitly set, enhancing clarity for configuration management. --- .env.example | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.env.example b/.env.example index 799e44525b..dfde0428d7 100644 --- a/.env.example +++ b/.env.example @@ -656,6 +656,9 @@ HELP_AND_FAQ_URL=https://librechat.ai # Enable Redis for caching and session storage # USE_REDIS=true +# Enable Redis for resumable LLM streams (defaults to USE_REDIS value if not set) +# Set to false to use in-memory storage for streams while keeping Redis for other caches +# USE_REDIS_STREAMS=true # Single Redis instance # REDIS_URI=redis://127.0.0.1:6379