10 lines
225 B
Python
10 lines
225 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
"""Transport wrappers for the LMCache KV cache SDK."""
|
|
|
|
# First Party
|
|
from lmcache.sdk.wrapper.contiguous import ContiguousTransferWrapper
|
|
|
|
__all__ = [
|
|
"ContiguousTransferWrapper",
|
|
]
|