@@ -263,23 +263,23 @@ def print_benchmarks_info(self):
263263 f"{ benchmark .total_count .errored } "
264264 ),
265265 (
266- f"{ benchmark .metrics .prompt_token_count .successful .mean :>5.1f} / "
266+ f"{ benchmark .metrics .prompt_token_count .successful .mean :>5.1f} / " # noqa: E501
267267 f"{ benchmark .metrics .prompt_token_count .incomplete .mean :.1f} / "
268268 f"{ benchmark .metrics .prompt_token_count .errored .mean :.1f} "
269269 ),
270270 (
271- f"{ benchmark .metrics .output_token_count .successful .mean :>5.1f} / "
271+ f"{ benchmark .metrics .output_token_count .successful .mean :>5.1f} / " # noqa: E501
272272 f"{ benchmark .metrics .output_token_count .incomplete .mean :.1f} / "
273273 f"{ benchmark .metrics .output_token_count .errored .mean :.1f} "
274274 ),
275275 (
276- f"{ benchmark .metrics .prompt_token_count .successful .total_sum :>6.0f} / "
277- f"{ benchmark .metrics .prompt_token_count .incomplete .total_sum :.0f} / "
276+ f"{ benchmark .metrics .prompt_token_count .successful .total_sum :>6.0f} / " # noqa: E501
277+ f"{ benchmark .metrics .prompt_token_count .incomplete .total_sum :.0f} / " # noqa: E501
278278 f"{ benchmark .metrics .prompt_token_count .errored .total_sum :.0f} "
279279 ),
280280 (
281- f"{ benchmark .metrics .output_token_count .successful .total_sum :>6.0f} / "
282- f"{ benchmark .metrics .output_token_count .incomplete .total_sum :.0f} / "
281+ f"{ benchmark .metrics .output_token_count .successful .total_sum :>6.0f} / " # noqa: E501
282+ f"{ benchmark .metrics .output_token_count .incomplete .total_sum :.0f} / " # noqa: E501
283283 f"{ benchmark .metrics .output_token_count .errored .total_sum :.0f} "
284284 ),
285285 ]
@@ -323,18 +323,18 @@ def print_benchmarks_stats(self):
323323 f"{ benchmark .metrics .request_latency .successful .percentiles .p99 :.2f} "
324324 ),
325325 (
326- f"{ benchmark .metrics .time_to_first_token_ms .successful .mean :.1f} / "
327- f"{ benchmark .metrics .time_to_first_token_ms .successful .median :.1f} / "
326+ f"{ benchmark .metrics .time_to_first_token_ms .successful .mean :.1f} / " # noqa: E501
327+ f"{ benchmark .metrics .time_to_first_token_ms .successful .median :.1f} / " # noqa: E501
328328 f"{ benchmark .metrics .time_to_first_token_ms .successful .percentiles .p99 :.1f} "
329329 ),
330330 (
331- f"{ benchmark .metrics .inter_token_latency_ms .successful .mean :.1f} / "
332- f"{ benchmark .metrics .inter_token_latency_ms .successful .median :.1f} / "
331+ f"{ benchmark .metrics .inter_token_latency_ms .successful .mean :.1f} / " # noqa: E501
332+ f"{ benchmark .metrics .inter_token_latency_ms .successful .median :.1f} / " # noqa: E501
333333 f"{ benchmark .metrics .inter_token_latency_ms .successful .percentiles .p99 :.1f} "
334334 ),
335335 (
336- f"{ benchmark .metrics .time_per_output_token_ms .successful .mean :.1f} / "
337- f"{ benchmark .metrics .time_per_output_token_ms .successful .median :.1f} / "
336+ f"{ benchmark .metrics .time_per_output_token_ms .successful .mean :.1f} / " # noqa: E501
337+ f"{ benchmark .metrics .time_per_output_token_ms .successful .median :.1f} / " # noqa: E501
338338 f"{ benchmark .metrics .time_per_output_token_ms .successful .percentiles .p99 :.1f} "
339339 ),
340340 ]
0 commit comments