Skip to content

Commit fbd86f7

Browse files
authored
Add comment
1 parent 5f0b812 commit fbd86f7

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

vllm/engine/arg_utils.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ class EngineArgs:
4141
seed: int = 0
4242
max_model_len: Optional[int] = None
4343
worker_use_ray: bool = False
44+
# Note: Specifying a custom executor backend by passing a class
45+
# is intended for expert use only. The API may change without
46+
# notice.
4447
distributed_executor_backend: Optional[Union[str,
4548
Type[ExecutorBase]]] = None
4649
pipeline_parallel_size: int = 1
@@ -68,6 +71,9 @@ class EngineArgs:
6871
max_seq_len_to_capture: int = 8192
6972
disable_custom_all_reduce: bool = False
7073
tokenizer_pool_size: int = 0
74+
# Note: Specifying a tokenizer pool by passing a class
75+
# is intended for expert use only. The API may change without
76+
# notice.
7177
tokenizer_pool_type: Union[str, Type["BaseTokenizerGroup"]] = "ray"
7278
tokenizer_pool_extra_config: Optional[dict] = None
7379
enable_lora: bool = False

0 commit comments

Comments
 (0)