Emits a string as model output without executing an incoming message or checking the active agent.
This function directly emits a provided string as output from the swarm session, bypassing message execution and agent activity checks.
It is designed exclusively for sessions established via makeConnection, ensuring compatibility with its connection model.
The execution is wrapped in beginContext for a clean environment, validates the session and swarm, and throws an error if the session mode
is not "makeConnection". The operation is logged if enabled, and resolves when the content is successfully emitted.
Throws
If the session mode is not "makeConnection", or if session or swarm validation fails.
Example
awaitemitForce("Direct output", "client-123"); // Emits "Direct output" in a makeConnection session
Emits a string as model output without executing an incoming message or checking the active agent.
This function directly emits a provided string as output from the swarm session, bypassing message execution and agent activity checks. It is designed exclusively for sessions established via
makeConnection
, ensuring compatibility with its connection model. The execution is wrapped inbeginContext
for a clean environment, validates the session and swarm, and throws an error if the session mode is not "makeConnection". The operation is logged if enabled, and resolves when the content is successfully emitted.Throws
If the session mode is not "makeConnection", or if session or swarm validation fails.
Example