Function commitFlushForce

Forcefully commits a flush of agent history for a specific client in the swarm system, without checking the active agent. Validates the session and swarm, then proceeds with flushing the history regardless of the current agent state. Runs within a beginContext wrapper for execution context management, logging operations via LoggerService. Integrates with SessionValidationService (session and swarm retrieval), SwarmValidationService (swarm validation), SessionPublicService (history flush), and LoggerService (logging). Unlike commitFlush, this function skips agent validation and active agent checks, providing a more aggressive flush mechanism, analogous to commitAssistantMessageForce vs. commitAssistantMessage.

If session or swarm validation fails, propagated from respective validation services.

  • Parameters

    • clientId: string

      The ID of the client associated with the session, validated against active sessions.

    Returns Promise<void>

    A promise that resolves when the history flush is committed.