Skip to content

Commit 8780e91

Browse files
committed
chore: remove LoRA fields from EngineConfig in NUMA branch
1 parent a1668e4 commit 8780e91

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

python/mlc_llm/serve/config.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,6 @@ class EngineConfig: # pylint: disable=too-many-instance-attributes
132132
133133
verbose : bool
134134
A boolean indicating whether to print logging info in engine.
135-
136-
lora_dirs : List[str]
137-
List of directories containing LoRA adapters to load.
138135
139136
numa_tensor_parallel : bool
140137
Whether to enable NUMA-aware tensor parallelism for CPU inference.
@@ -178,7 +175,6 @@ class EngineConfig: # pylint: disable=too-many-instance-attributes
178175
prefix_cache_max_num_recycling_seqs: Optional[int] = None
179176
prefill_mode: Literal["chunked", "hybrid"] = "hybrid"
180177
verbose: bool = True
181-
lora_dirs: List[str] = field(default_factory=list)
182178
numa_tensor_parallel: bool = False
183179
numa_nodes: Optional[List[int]] = None
184180
numa_inter_node_penalty: float = 0.3

0 commit comments

Comments
 (0)