Skip to content

Commit

Permalink
[Minor] Fix printing format
Browse files Browse the repository at this point in the history
  • Loading branch information
WoosukKwon committed Feb 24, 2023
1 parent 1132fae commit 6aef227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cacheflow/master/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}')

0 comments on commit 6aef227

Please sign in to comment.