Class for managing chat message memory using the Motorhead service. It extends BaseChatMemory and includes methods for initializing the memory, loading memory variables, and saving the context.

Hierarchy

Constructors

Properties

caller: AsyncCaller
memoryKey: string
returnMessages: boolean
sessionId: string
timeout: number
url: string
apiKey?: string
clientId?: string
context?: string
inputKey?: string
outputKey?: string

Accessors

  • get memoryKeys(): string[]
  • Returns string[]

Methods

  • Method to clear the chat history.

    Returns Promise<void>

    Promise that resolves when the chat history has been cleared.

  • Method that initializes the memory by fetching the session memory from the Motorhead service. It adds the messages to the chat history and sets the context if it is not 'NONE'.

    Returns Promise<void>

  • Method that loads the memory variables. It gets the chat messages and returns them as a string or an array based on the returnMessages flag.

    Parameters

    Returns Promise<MemoryVariables>

    A promise that resolves with the memory variables.

  • Method that saves the context to the Motorhead service and the base chat memory. It sends a POST request to the Motorhead service with the input and output messages, and calls the saveContext method of the base chat memory.

    Parameters

    Returns Promise<void>

    A promise that resolves when the context is saved.

Generated using TypeDoc