mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-01 02:50:47 +00:00
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 <erick@langchain.dev>
This commit is contained in:
@@ -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."
|
||||
|
Reference in New Issue
Block a user