From 3bbfebc390c959fc8657e2db3ef5c8efc5e520bd Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 29 Jun 2023 15:34:10 -0700 Subject: [PATCH] fixed console.print --- benchmark/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index e57e9d4a3..20fc43050 100755 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -218,7 +218,7 @@ def summarize_results(dirname): print("num_user_asks:", total_user_asks) style = "red" if num_exhausted_context_windows else None - print("num_exhausted_context_windows", num_exhausted_context_windows, style=style) + console.print("num_exhausted_context_windows", num_exhausted_context_windows, style=style) style = "red" if total_test_timeouts else None console.print("test_timeouts:", total_test_timeouts, style=style)