From 7e2a913c64bae56e1835e061d3b23c490508ec52 Mon Sep 17 00:00:00 2001 From: Woosuk Kwon Date: Sun, 18 Jun 2023 19:58:25 -0700 Subject: [PATCH] [Minor] Fix CompletionOutput.__repr__ (#157) --- vllm/outputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/outputs.py b/vllm/outputs.py index 2e957a810cd4..fea521d12924 100644 --- a/vllm/outputs.py +++ b/vllm/outputs.py @@ -41,7 +41,7 @@ class CompletionOutput: f"text={self.text!r}, " f"token_ids={self.token_ids}, " f"cumulative_logprob={self.cumulative_logprob}, " - f"logprobs={self.logprobs}," + f"logprobs={self.logprobs}, " f"finish_reason={self.finish_reason})")