Skip to content

Commit ac5a664

Browse files
committed
ruff format
1 parent 3103361 commit ac5a664

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/flare_ai_consensus/main.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)