From 6aef2278f457e564c17a84465b8b4e74986ccd3c Mon Sep 17 00:00:00 2001 From: Woosuk Kwon Date: Fri, 24 Feb 2023 11:56:06 +0000 Subject: [PATCH] [Minor] Fix printing format --- cacheflow/master/frontend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cacheflow/master/frontend.py b/cacheflow/master/frontend.py index a34f754bf1cb0..23ae2723dc091 100644 --- a/cacheflow/master/frontend.py +++ b/cacheflow/master/frontend.py @@ -53,4 +53,4 @@ def print_response( for seq in seq_group.seqs: token_ids = seq.get_token_ids() output = self.tokenizer.decode(token_ids, skip_special_tokens=True) - print(f'Seq {seq.seq_id}: {output}') + print(f'Seq {seq.seq_id}: {output!r}')