-
-
Notifications
You must be signed in to change notification settings - Fork 12.1k
Move LoRAConfig from config/__init__.py to config/lora.py
#24644
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
LoadConfig from config/__init__.py to config/lora.pyLoRAConfig from config/__init__.py to config/lora.py
Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
8815183 to
305b1a4
Compare
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 refactors the location of LoRAConfig, moving it from the main vllm/config/__init__.py file into its own dedicated module, vllm/config/lora.py. This is a good code organization improvement. The changes include moving the class and updating all internal import paths accordingly. Backward compatibility is maintained by re-exporting LoRAConfig from the original location. The changes are straightforward and have been implemented correctly. I found no high or critical issues in this pull request.
…-project#24644) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
…-project#24644) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
…-project#24644) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com>
…-project#24644) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> Signed-off-by: xuebwang-amd <xuebwang@amd.com>
…-project#24644) Signed-off-by: Harry Mellor <19981378+hmellor@users.noreply.github.com> Signed-off-by: xuebwang-amd <xuebwang@amd.com>
Part of #18953