We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 016bdff commit 509c0baCopy full SHA for 509c0ba
api/config.py
@@ -224,6 +224,9 @@ class VLLMSetting(BaseModel):
224
lora_modules: Optional[str] = Field(
225
default=get_env("LORA_MODULES", ""),
226
)
227
+ disable_custom_all_reduce: Optional[bool] = Field(
228
+ default=get_bool_env("DISABLE_CUSTOM_ALL_REDUCE"),
229
+ )
230
vllm_disable_log_stats: Optional[bool] = Field(
231
default=get_bool_env("VLLM_DISABLE_LOG_STATS", "true"),
232
api/models.py
@@ -112,6 +112,7 @@ def create_vllm_engine():
112
"max_loras",
113
"max_lora_rank",
114
"lora_extra_vocab_size",
115
+ "disable_custom_all_reduce",
116
}
117
118
if vllm_version >= "0.4.3":
0 commit comments