Const
Readonly
callbacks: Partial<IHistoryInstanceCallbacks>Readonly
clientId: stringDisposes of the history, clearing all data if agentName is null. Invokes onDispose callback if provided.
The name of the agent, or null to clear all data.
A promise that resolves when disposal is complete.
Iterates over history messages, applying filters and system prompts if configured. Invokes onRead callbacks during iteration if provided.
The name of the agent.
An async iterator yielding filtered messages.
Removes and returns the last message from the in-memory history. Invokes onPop and onChange callbacks if provided.
The name of the agent.
The last message, or null if the history is empty.
Adds a new message to the in-memory history. Invokes onPush and onChange callbacks if provided.
The message to add.
The name of the agent.
A promise that resolves when the message is added.
Initializes the history for an agent, loading initial data if needed.
The name of the agent.
A promise that resolves when initialization is complete.
Manages an in-memory history of messages without persistence.