-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Core] Rename input data types #8688
Conversation
- `LLMInputs` to `TokenInputs` (preprocessing), `SingletonInputs` (sequence) or `DecoderOnlyInputs` (VLM processors) - `EncoderDecoderLLMInputs` to `EncoderDecoderInputs` - `is_valid_encoder_decoder_llm_inputs` to `is_encoder_decoder_inputs`
👋 Hi! Thank you for contributing to the vLLM project. Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging. To run CI, PR reviewers can do one of these:
🚀 |
d030da9
to
0f911ce
Compare
0f911ce
to
eb00f71
Compare
@ywang96 this PR is ready for review. |
Seems that there are conflicts in |
Let me update them real quick. |
Signed-off-by: charlifu <[email protected]>
Signed-off-by: Vinay Damodaran <[email protected]>
Signed-off-by: Alvant <[email protected]>
Signed-off-by: Amit Garg <[email protected]>
Signed-off-by: qishuai <[email protected]>
Signed-off-by: Sumit Dubey <[email protected]>
REF vllm-project/vllm#8688 Signed-off-by: Travis Johnson <[email protected]>
Signed-off-by: Maxime Fournioux <[email protected]>
REF vllm-project/vllm#8688 Signed-off-by: Travis Johnson <[email protected]>
More changes split out from #6869:
LLMInputs
toTokenInputs
(preprocessing),SingletonInputs
(sequence) orDecoderOnlyInputs
(VLM processors)LLMInputs
import will remain available for one release before being removed entirely.EncoderDecoderLLMInputs
toEncoderDecoderInputs
EncoderDecoderLLMInputs
import will remain available for one release before being removed entirely.is_valid_encoder_decoder_llm_inputs
tois_encoder_decoder_inputs
Follow-up to #8687:
from_token_counts
tofrom_prompt_token_counts
SequenceData