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 history, updating persistent storage. 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 history, persisting it to storage. Invokes onPush and onChange callbacks if provided.
The message to add.
The name of the agent.
A promise that resolves when the message is persisted.
Initializes the history for an agent, loading data from persistent storage if needed.
The name of the agent.
A promise that resolves when initialization is complete.
Manages a persistent history of messages, storing them in memory and on disk.