[Minor] Fix CompletionOutput.__repr__ (#157)

This commit is contained in:
Woosuk Kwon 2023-06-18 19:58:25 -07:00 committed by GitHub
parent 3f92038b99
commit 7e2a913c64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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})")