-
-
Notifications
You must be signed in to change notification settings - Fork 10.6k
Move KVEventsConfig
from config/__init__.py
to config/kv_events.py
#24433
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
Conversation
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request moves the KVEventsConfig
class from vllm/config/__init__.py
to a new, dedicated file vllm/config/kv_events.py
. This is a good refactoring that improves code organization. The changes are correctly implemented: the class definition is moved, import paths are updated in all affected files, and backward compatibility is maintained by re-exporting the class from the vllm.config
package. The changes are clean and I have no suggestions for improvement.
…py` (vllm-project#24433) Signed-off-by: Harry Mellor <[email protected]>
…py` (vllm-project#24433) Signed-off-by: Harry Mellor <[email protected]>
ty for your pr, i wonder this function maybe easy for Devops work? |
Sorry, I don't understand the question. What would you like to know? |
…py` (vllm-project#24433) Signed-off-by: Harry Mellor <[email protected]>
…py` (vllm-project#24433) Signed-off-by: Harry Mellor <[email protected]> Signed-off-by: xuebwang-amd <[email protected]>
Part of #18953