Commits a user message to the active agent's history in a swarm session without triggering a response and without checking the active agent.
This function forcefully commits a user message to the history of the active agent in the specified swarm session, bypassing the check for whether the agent is still active.
It performs validation on the session and swarm, logs the operation if enabled, and delegates the commit operation to the session public service.
The execution is wrapped in beginContext to ensure it runs outside of existing method and execution contexts, providing a clean execution environment.
Throws
If validation fails (e.g., invalid session or swarm) or if the session public service encounters an error during the commit operation.
Commits a user message to the active agent's history in a swarm session without triggering a response and without checking the active agent.
This function forcefully commits a user message to the history of the active agent in the specified swarm session, bypassing the check for whether the agent is still active. It performs validation on the session and swarm, logs the operation if enabled, and delegates the commit operation to the session public service. The execution is wrapped in
beginContext
to ensure it runs outside of existing method and execution contexts, providing a clean execution environment.Throws
If validation fails (e.g., invalid session or swarm) or if the session public service encounters an error during the commit operation.
Example