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.

If the session mode is not "makeConnection", or if session or swarm validation fails.

await emitForce("Direct output", "client-123"); // Emits "Direct output" in a makeConnection session
  • Parameters

    • content: string

      The content to be emitted as the model output.

    • clientId: string

      The unique identifier of the client session emitting the content.

    Returns Promise<void>

    A promise that resolves when the content is emitted.