⚠️ Deprecated ⚠️

This feature is deprecated and will be removed in the future.

It is not recommended for use.

Install and import from the "@langchain/redis" integration package instead. 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 (view full)

Constructors

Properties

client: RedisClientType<RedisModules, RedisFunctions, RedisScripts>

Methods

  • Adds a new chat message to the Redis database for the current session.

    Parameters

    • message: BaseMessage

      The BaseMessage instance to add.

    Returns Promise<void>

    Promise resolving when the message has been added.

  • 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