11 lines
370 B
Python
11 lines
370 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
"""Defines the base type for KV cache connectors."""
|
|
|
|
from vllm.distributed.kv_transfer.kv_connector.v1 import KVConnectorBase_V1
|
|
|
|
KVConnectorBase = KVConnectorBase_V1
|
|
KVConnectorBaseType = KVConnectorBase_V1
|
|
|
|
__all__ = ["KVConnectorBase", "KVConnectorBaseType"]
|