Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
e5d3d63c
Unverified
Commit
e5d3d63c
authored
Aug 12, 2025
by
Daniel Serebrenik
Committed by
GitHub
Aug 12, 2025
Browse files
[Benchmark] Fix terminal colors in benchmark_serving_multi_turn (python 3.12) (#22730)
Signed-off-by:
daniels
<
daniels@pliops.com
>
parent
3d9d40ef
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
benchmarks/multi_turn/bench_utils.py
benchmarks/multi_turn/bench_utils.py
+4
-1
No files found.
benchmarks/multi_turn/bench_utils.py
View file @
e5d3d63c
...
...
@@ -4,7 +4,7 @@ import logging
from
enum
import
Enum
class
Color
(
str
,
Enum
):
class
Color
(
Enum
):
RED
=
"
\033
[91m"
GREEN
=
"
\033
[92m"
BLUE
=
"
\033
[94m"
...
...
@@ -13,6 +13,9 @@ class Color(str, Enum):
YELLOW
=
"
\033
[93m"
RESET
=
"
\033
[0m"
def
__str__
(
self
):
return
self
.
value
TEXT_SEPARATOR
=
"-"
*
100
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment