The content or command to be executed by the agent.
The unique identifier of the client session requesting the execution.
The name of the agent intended to execute the command.
A promise that resolves to the result of the execution, or an empty string if skipped due to an agent change.
Sends a message to the active agent in a swarm session as if it originated from the client side.
This function executes a command or message on behalf of the specified agent within a swarm session, designed for scenarios like reviewing tool output or initiating a model-to-client conversation. It validates the agent and session, checks if the specified agent is still active, and executes the content with performance tracking and event bus notifications. The execution is wrapped in
beginContext
for a clean environment and runs within anExecutionContextService
context for metadata tracking. If the active agent has changed, the operation is skipped.Throws
If agent, session, or swarm validation fails, or if the execution process encounters an error.
Example