From 0cae37b0a9facfc915477e2ab8d6a8e3cab2cff6 Mon Sep 17 00:00:00 2001 From: Savar Bhasin <51899822+savarbhasin@users.noreply.github.com> Date: Wed, 23 Oct 2024 01:12:51 +0530 Subject: [PATCH] docs: fix docker command for RedisChatMessageHistory (#27484) docs: "fix docker command" - **Description**: The Redis chat message history component requires the Redis Stack to create indexes. When using only Redis, the following error occurs: "Unknown command 'FT.INFO', with args beginning with: 'chat_history'". - **Twitter handle**: savar_bhasin Co-authored-by: Erick Friis --- docs/docs/integrations/memory/redis_chat_message_history.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/integrations/memory/redis_chat_message_history.ipynb b/docs/docs/integrations/memory/redis_chat_message_history.ipynb index 3b23833b0fb..ba76b9e456b 100644 --- a/docs/docs/integrations/memory/redis_chat_message_history.ipynb +++ b/docs/docs/integrations/memory/redis_chat_message_history.ipynb @@ -36,7 +36,7 @@ "Make sure you have a Redis server running. You can start one using Docker with the following command:\n", "\n", "```\n", - "docker run -d -p 6379:6379 redis:latest\n", + "docker run -d --name redis-stack -p 6379:6379 -p 8001:8001 redis/redis-stack:latest\n", "```\n", "\n", "Or install and run Redis locally according to the instructions for your operating system."