File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3491,10 +3491,6 @@ class KVTransferConfig:
3491
3491
"""The KV connector for vLLM to transmit KV caches between vLLM instances.
3492
3492
"""
3493
3493
3494
- kv_connector_module_path : Optional [str ] = None
3495
- """The Python module path to dynamically load the KV connector from.
3496
- Only supported in V1."""
3497
-
3498
3494
engine_id : str = str (uuid .uuid4 ())
3499
3495
"""The engine id for KV transfers."""
3500
3496
@@ -3528,6 +3524,10 @@ class KVTransferConfig:
3528
3524
kv_connector_extra_config : dict [str , Any ] = field (default_factory = dict )
3529
3525
"""any extra config that the connector may need."""
3530
3526
3527
+ kv_connector_module_path : Optional [str ] = None
3528
+ """The Python module path to dynamically load the KV connector from.
3529
+ Only supported in V1."""
3530
+
3531
3531
def compute_hash (self ) -> str :
3532
3532
"""
3533
3533
WARNING: Whenever a new field is added to this config,
You can’t perform that action at this time.
0 commit comments