mirror of
https://github.com/hwchase17/langchain.git
synced 2025-09-06 13:33:37 +00:00
**Description:** This PR modifies the documentation regarding the configuration of the VLLM with the LoRA adapter. The updates aim to provide clear instructions for users on how to set up the LoRA adapter when using the VLLM. - before ```python VLLM(..., enable_lora=True) ``` - after ```python VLLM(..., vllm_kwargs={ "enable_lora": True } ) ``` This change clarifies that users should use the vllm_kwargs to enable the LoRA adapter. Co-authored-by: Um Changyong <changyong.um@sfa.co.kr>
LangChain Documentation
For more information on contributing to our documentation, see the Documentation Contributing Guide