Retrieves the assistant's history entries for a given client session.
This function fetches the raw history for a specified client using getRawHistory and filters it to include only entries where the role is
"assistant". It is wrapped in beginContext for a clean execution environment and logs the operation if enabled via GLOBAL_CONFIG. The result
is an array of history objects representing the assistant's contributions in the session.
Throws
If getRawHistory fails due to session validation or history retrieval issues.
Example
constassistantHistory = awaitgetAssistantHistory("client-123"); console.log(assistantHistory); // Outputs array of assistant history entries
Retrieves the assistant's history entries for a given client session.
This function fetches the raw history for a specified client using
getRawHistory
and filters it to include only entries where the role is "assistant". It is wrapped inbeginContext
for a clean execution environment and logs the operation if enabled viaGLOBAL_CONFIG
. The result is an array of history objects representing the assistant's contributions in the session.Throws
If
getRawHistory
fails due to session validation or history retrieval issues.Example