Modules:
| Name | Description | 
|---|---|
| kv_connector |  | 
| kv_lookup_buffer |  | 
| kv_pipe |  | 
| kv_transfer_state |  | 
 module-attribute  ¶
 __all__ = [
    "get_kv_transfer_group",
    "has_kv_transfer_group",
    "is_v1_kv_transfer_group",
    "ensure_kv_transfer_initialized",
    "ensure_kv_transfer_shutdown",
    "KVConnectorBaseType",
]
 
 ensure_kv_transfer_initialized(
    vllm_config: VllmConfig,
) -> None
Initialize KV cache transfer parallel group.
Source code in vllm/distributed/kv_transfer/kv_transfer_state.py
  
    
 get_kv_transfer_group() -> KVConnectorBaseType
 
 is_v1_kv_transfer_group(
    connector: KVConnectorBaseType | None = None,
) -> bool
Check if the KV connector is the v1 connector. If the argument is None, it will check the global KV connector
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
| connector | KVConnectorBaseType | None | The KV connector to check. If None, it will check the global KV connector. | None | 
Note
This function will no-longer be needed after the v1 KV connector becomes the default.