File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
src/vllm_tgis_adapter/grpc Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 32
32
pyv : ["3.12"]
33
33
vllm_version :
34
34
# - "" # skip the pypi version as it will not work on CPU
35
- -
" git+https://github.com/vllm-project/[email protected] .4 "
35
+ -
" git+https://github.com/vllm-project/[email protected] .6.post1 "
36
36
- " git+https://github.com/vllm-project/vllm@main"
37
37
- " git+https://github.com/opendatahub-io/vllm@main"
38
38
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ classifiers = [
26
26
requires-python = " >=3.9"
27
27
dynamic = [" version" ]
28
28
dependencies = [
29
- " vllm>=0.6.4 " ,
29
+ " vllm>=0.6.6.post1 " ,
30
30
" prometheus_client==0.21.0" ,
31
31
" grpcio==1.67.0" ,
32
32
" grpcio-health-checking==1.62.2" ,
Original file line number Diff line number Diff line change 62
62
from grpc .aio import ServicerContext
63
63
from vllm import CompletionOutput , RequestOutput
64
64
from vllm .config import ModelConfig
65
-
66
- try :
67
- from vllm .engine .protocol import EngineClient
68
- except ImportError :
69
- # fallback for versions <=v0.6.1.post2
70
- from vllm .engine .protocol import AsyncEngineClient as EngineClient
65
+ from vllm .engine .protocol import EngineClient
71
66
from vllm .lora .request import LoRARequest
72
67
from vllm .sequence import Logprob
73
68
from vllm .transformers_utils .tokenizer import AnyTokenizer
You can’t perform that action at this time.
0 commit comments