Skip to content

Commit 1566348

Browse files
anmarquesmarkurtz
authored andcommitted
quality fixes
1 parent ba4187d commit 1566348

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/guidellm/core/result.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def ttft_distribution(self) -> Distribution:
381381
if result.first_token_time is not None
382382
]
383383
)
384-
384+
385385
@computed_field
386386
@property
387387
def time_to_first_token_percentiles(self) -> List[float]:
@@ -390,7 +390,7 @@ def time_to_first_token_percentiles(self) -> List[float]:
390390
391391
:return: List of percentile time taken to decode the first token in milliseconds.
392392
:rtype: List[float]
393-
"""
393+
"""
394394
return self.ttft_distribution.percentiles([1, 5, 10, 50, 90, 95, 99])
395395

396396
@computed_field
@@ -420,7 +420,7 @@ def itl_distribution(self) -> Distribution:
420420
decode for result in self.results for decode in result.decode_times.data
421421
]
422422
)
423-
423+
424424
@computed_field
425425
@property
426426
def inter_token_latency_percentiles(self) -> List[float]:

0 commit comments

Comments
 (0)