Class for storing chat message history using Redis. Extends the BaseListChatMessageHistory class.

Example

const chatHistory = new RedisChatMessageHistory({
sessionId: new Date().toISOString(),
sessionTTL: 300,
url: "redis:
});

const chain = new ConversationChain({
llm: new ChatOpenAI({ modelName: "gpt-3.5-turbo", temperature: 0 }),
memory: { chatHistory },
});

const response = await chain.invoke({
input: "What did I just say my name was?",
});
console.log({ response });

Hierarchy

Constructors

Properties

client: RedisClientType<RedisModules, RedisFunctions, RedisScripts>

Methods

  • Ensures the Redis client is ready to perform operations. If the client is not ready, it attempts to connect to the Redis database.

    Returns Promise<boolean>

    Promise resolving to true when the client is ready.

Generated using TypeDoc