Variable HistoryMemoryInstanceConst

HistoryMemoryInstance: new (
    clientId: string,
    callbacks: Partial<IHistoryInstanceCallbacks>,
) => {
    callbacks: Partial<IHistoryInstanceCallbacks>;
    clientId: string;
    dispose(agentName: string): Promise<void>;
    iterate(agentName: string): AsyncIterableIterator<IModelMessage<object>>;
    pop(agentName: string): Promise<IModelMessage<object>>;
    push(value: IModelMessage, agentName: string): Promise<void>;
    waitForInit(agentName: string): Promise<void>;
}

Manages an in-memory history of messages without persistence.

Type declaration

    • new (
          clientId: string,
          callbacks: Partial<IHistoryInstanceCallbacks>,
      ): {
          callbacks: Partial<IHistoryInstanceCallbacks>;
          clientId: string;
          dispose(agentName: string): Promise<void>;
          iterate(agentName: string): AsyncIterableIterator<IModelMessage<object>>;
          pop(agentName: string): Promise<IModelMessage<object>>;
          push(value: IModelMessage, agentName: string): Promise<void>;
          waitForInit(agentName: string): Promise<void>;
      }
    • Parameters

      Returns {
          callbacks: Partial<IHistoryInstanceCallbacks>;
          clientId: string;
          dispose(agentName: string): Promise<void>;
          iterate(agentName: string): AsyncIterableIterator<IModelMessage<object>>;
          pop(agentName: string): Promise<IModelMessage<object>>;
          push(value: IModelMessage, agentName: string): Promise<void>;
          waitForInit(agentName: string): Promise<void>;
      }

      • Readonlycallbacks: Partial<IHistoryInstanceCallbacks>
      • ReadonlyclientId: string
      • dispose:function
        • Disposes of the history, clearing all data if agentName is null. Invokes onDispose callback if provided.

          Parameters

          • agentName: string

            The name of the agent, or null to clear all data.

          Returns Promise<void>

          A promise that resolves when disposal is complete.

      • iterate:function
        • Iterates over history messages, applying filters and system prompts if configured. Invokes onRead callbacks during iteration if provided.

          Parameters

          • agentName: string

            The name of the agent.

          Returns AsyncIterableIterator<IModelMessage<object>>

          An async iterator yielding filtered messages.

      • pop:function
        • Removes and returns the last message from the in-memory history. Invokes onPop and onChange callbacks if provided.

          Parameters

          • agentName: string

            The name of the agent.

          Returns Promise<IModelMessage<object>>

          The last message, or null if the history is empty.

      • push:function
        • Adds a new message to the in-memory history. Invokes onPush and onChange callbacks if provided.

          Parameters

          • value: IModelMessage

            The message to add.

          • agentName: string

            The name of the agent.

          Returns Promise<void>

          A promise that resolves when the message is added.

      • waitForInit:function
        • Initializes the history for an agent, loading initial data if needed.

          Parameters

          • agentName: string

            The name of the agent.

          Returns Promise<void>

          A promise that resolves when initialization is complete.