This commit is contained in:
jif-oai
2025-10-16 11:14:10 +01:00
parent af3bf801ce
commit 54b9436699
4 changed files with 23 additions and 9 deletions

View File

@@ -513,7 +513,7 @@ impl InftyOrchestrator {
claim_path: &str,
options: &RunExecutionOptions,
) -> Result<AggregatedVerifierVerdict> {
let pool = VerifierPool::from_sessions(
let mut pool = VerifierPool::from_sessions(
Arc::clone(&self.hub),
sessions,
options.verifier_timeout,
@@ -521,6 +521,8 @@ impl InftyOrchestrator {
);
let req = VerificationRequestPayload::new(claim_path, None, None);
let round = pool.collect_round(&req).await?;
pool.rotate_passing(sessions, &self.conversation_manager, &round.passing_roles)
.await?;
Ok(round.summary)
}
}