mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-24 20:15:01 +08:00
[LMCache] Relax lmcache version requirement (#30425)
Signed-off-by: Nick Hill <nhill@redhat.com>
This commit is contained in:
parent
9f2fc16a69
commit
947dfda9c2
@ -1,2 +1,2 @@
|
||||
lmcache >= 0.3.10.post1
|
||||
lmcache
|
||||
nixl >= 0.7.1 # Required for disaggregated prefill
|
||||
|
||||
@ -27,7 +27,14 @@ from lmcache.v1.lookup_client.lmcache_async_lookup_client import (
|
||||
LMCacheAsyncLookupServer,
|
||||
)
|
||||
from lmcache.v1.offload_server.zmq_server import ZMQOffloadServer
|
||||
from lmcache.v1.plugin.runtime_plugin_launcher import RuntimePluginLauncher
|
||||
|
||||
try:
|
||||
from lmcache.v1.plugin.runtime_plugin_launcher import RuntimePluginLauncher
|
||||
except ImportError:
|
||||
# Backwards compatibility for lmcache <= 0.3.10-post1
|
||||
from lmcache.v1.plugin.plugin_launcher import (
|
||||
PluginLauncher as RuntimePluginLauncher,
|
||||
)
|
||||
|
||||
from vllm.attention.backends.abstract import AttentionMetadata
|
||||
from vllm.config import VllmConfig
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user