Skip to content

Commit dcdb4d1

Browse files
mgoinyangw-dev
authored andcommitted
[Bugfix][TPU] Fix TPU validate_request (vllm-project#16369)
Signed-off-by: Michael Goin <[email protected]> Signed-off-by: Yang Wang <[email protected]>
1 parent 2cc1cbf commit dcdb4d1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

vllm/platforms/tpu.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,17 @@
77
import vllm.envs as envs
88
from vllm.inputs import PromptType
99
from vllm.logger import init_logger
10+
from vllm.sampling_params import SamplingParams
1011

1112
from .interface import Platform, PlatformEnum, _Backend
1213

1314
if TYPE_CHECKING:
1415
from vllm.config import ModelConfig, VllmConfig
15-
from vllm.lora.request import LoRARequest
1616
from vllm.pooling_params import PoolingParams
17-
from vllm.sampling_params import SamplingParams
1817
else:
1918
ModelConfig = None
2019
VllmConfig = None
21-
LoRARequest = None
2220
PoolingParams = None
23-
SamplingParams = None
2421

2522
logger = init_logger(__name__)
2623

0 commit comments

Comments
 (0)