Function commitToolOutputForce

Commits the output of a tool execution to the active agent in a swarm session without checking the active agent.

This function forcefully commits the tool output to the session, bypassing the check for whether the agent is still active in the swarm session. 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.

If validation fails (e.g., invalid session or swarm) or if the session public service encounters an error during the commit operation.

await commitToolOutputForce("tool-123", "Tool execution result", "client-456");
  • Parameters

    • toolId: string

      The unique identifier of the tool whose output is being committed.

    • content: string

      The content or result of the tool execution to be committed.

    • clientId: string

      The unique identifier of the client session associated with the operation.

    Returns Promise<void>

    A promise that resolves when the tool output is successfully committed.