File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3491,10 +3491,6 @@ class KVTransferConfig:
34913491 """The KV connector for vLLM to transmit KV caches between vLLM instances.
34923492 """
34933493
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-
34983494 engine_id : str = str (uuid .uuid4 ())
34993495 """The engine id for KV transfers."""
35003496
@@ -3528,6 +3524,10 @@ class KVTransferConfig:
35283524 kv_connector_extra_config : dict [str , Any ] = field (default_factory = dict )
35293525 """any extra config that the connector may need."""
35303526
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+
35313531 def compute_hash (self ) -> str :
35323532 """
35333533 WARNING: Whenever a new field is added to this config,
You can’t perform that action at this time.
0 commit comments