Skip to content

Commit 2954f14

Browse files
committed
Add comment
1 parent 802e7dd commit 2954f14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vllm/entrypoints/openai/protocol.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1489,9 +1489,9 @@ class CompletionResponseChoice(OpenAIBaseModel):
14891489
"to stop, None if the completion finished for some other reason "
14901490
"including encountering the EOS token"),
14911491
)
1492-
token_ids: Optional[list[int]] = None
1492+
token_ids: Optional[list[int]] = None # For response
14931493
prompt_logprobs: Optional[list[Optional[dict[int, Logprob]]]] = None
1494-
prompt_token_ids: Optional[list[int]] = None
1494+
prompt_token_ids: Optional[list[int]] = None # For prompt
14951495

14961496

14971497
class CompletionResponse(OpenAIBaseModel):

0 commit comments

Comments
 (0)