File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ async def run_consensus(
3333 aggregated_response = await aggregator .async_centralized_llm_aggregator (
3434 client , consensus_config .aggregator_config , responses
3535 )
36- logger .info ("initial response aggregation complete" , aggregated_response = aggregated_response )
36+ logger .info (
37+ "initial response aggregation complete" , aggregated_response = aggregated_response
38+ )
3739
3840 response_data ["iteration_0" ] = responses
3941 response_data ["aggregate_0" ] = aggregated_response
@@ -46,7 +48,11 @@ async def run_consensus(
4648 aggregated_response = await aggregator .async_centralized_llm_aggregator (
4749 client , consensus_config .aggregator_config , responses
4850 )
49- logger .info ("responses aggregated" , iteration = i + 1 , aggregated_response = aggregated_response )
51+ logger .info (
52+ "responses aggregated" ,
53+ iteration = i + 1 ,
54+ aggregated_response = aggregated_response ,
55+ )
5056
5157 response_data [f"iteration_{ i + 1 } " ] = responses
5258 response_data [f"aggregate_{ i + 1 } " ] = aggregated_response
You can’t perform that action at this time.
0 commit comments