From d1538d429adb775fe152faaf9a8f3a1f33507406 Mon Sep 17 00:00:00 2001 From: dalthecow Date: Wed, 20 Aug 2025 09:59:37 -0400 Subject: [PATCH] switch metric to pull from tpot instead of itl Signed-off-by: dalthecow --- src/guidellm/presentation/data_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guidellm/presentation/data_models.py b/src/guidellm/presentation/data_models.py index ff5221e3..c25f29a2 100644 --- a/src/guidellm/presentation/data_models.py +++ b/src/guidellm/presentation/data_models.py @@ -218,7 +218,7 @@ def from_benchmark(cls, bm: "GenerativeBenchmark"): return cls( requests_per_second=bm.metrics.requests_per_second.successful.mean, tpot=TabularDistributionSummary.from_distribution_summary( - bm.metrics.inter_token_latency_ms.successful + bm.metrics.time_per_output_token_ms.successful ), ttft=TabularDistributionSummary.from_distribution_summary( bm.metrics.time_to_first_token_ms.successful