Skip to content

Commit

Permalink
fix(redis): update wrong redis setup link (#7698)
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang authored Feb 18, 2025
1 parent 473ef0e commit 54b68a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/langchain-redis/src/vectorstores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ export class RedisVectorStore extends VectorStore {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
if ((err as any)?.message.includes("unknown command")) {
throw new Error(
"Failed to run FT.INFO command. Please ensure that you are running a RediSearch-capable Redis instance: https://js.langchain.com/docs/modules/data_connection/vectorstores/integrations/redis#setup"
"Failed to run FT.INFO command. Please ensure that you are running a RediSearch-capable Redis instance: https://js.langchain.com/docs/integrations/vectorstores/redis/#setup"
);
}
// index doesn't exist
Expand Down

0 comments on commit 54b68a4

Please sign in to comment.