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

Hierarchy

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.

  • Parameters

    • message: string

    Returns Promise<void>

  • Deletes all chat messages from the Redis database for the current session.

    Returns Promise<void>

    Promise resolving when the messages have been deleted.

  • 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.

  • Retrieves all chat messages from the Redis database for the current session.

    Returns Promise<BaseMessage[]>

    Promise resolving to an array of BaseMessage instances.

Generated using TypeDoc