Skip to content

Commit bcbaca9

Browse files
committed
Set defaults for console output
1 parent d81e6f1 commit bcbaca9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/guidellm/benchmark/entrypoints.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ async def benchmark_generative_text(
5555
max_requests: Optional[int],
5656
warmup_percent: Optional[float],
5757
cooldown_percent: Optional[float],
58-
show_progress: bool,
59-
show_progress_scheduler_stats: bool,
60-
output_console: bool,
6158
output_path: Optional[Union[str, Path]],
6259
output_extras: Optional[dict[str, Any]],
6360
output_sampling: Optional[int],
6461
random_seed: int,
62+
show_progress: bool = True,
63+
show_progress_scheduler_stats: bool = False,
64+
output_console: bool = True,
6565
) -> tuple[GenerativeBenchmarksReport, Optional[Path]]:
6666
console = GenerativeBenchmarksConsole(enabled=show_progress)
6767
console.print_line("Creating backend...")

0 commit comments

Comments
 (0)