From 5d711e403f849384ec12c0a0c4197de2eea8b428 Mon Sep 17 00:00:00 2001 From: Arthur Kim Date: Wed, 12 Jun 2024 17:09:57 +0900 Subject: [PATCH] [Bugfix] TYPE_CHECKING for MultiModalData --- vllm/inputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vllm/inputs.py b/vllm/inputs.py index 85c9cd84f5ed5..026903e19a26e 100644 --- a/vllm/inputs.py +++ b/vllm/inputs.py @@ -4,7 +4,7 @@ from typing_extensions import NotRequired if TYPE_CHECKING: - from vllm.sequence import MultiModalData + from vllm.multimodal import MultiModalData class ParsedText(TypedDict):