We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d19de2 commit 2135cacCopy full SHA for 2135cac
vllm/worker/cpu_model_runner.py
@@ -343,8 +343,8 @@ def execute_model(
343
"kv_caches": kv_caches,
344
"attn_metadata": attn_metadata,
345
}
346
- if self.vision_language_config:
347
- execute_model_kwargs.update({"image_input": multi_modal_input})
+ if self.vision_language_config and multi_modal_input is not None:
+ execute_model_kwargs.update(multi_modal_input)
348
349
hidden_states = model_executable(**execute_model_kwargs)
350
0 commit comments