Skip to content

Commit 1903535

Browse files
Update vllm/model_executor/models/mllama4.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Rahul Tuli <[email protected]> Signed-off-by: Rahul Tuli <[email protected]>
1 parent afa9b18 commit 1903535

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/model_executor/models/mllama4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@ def get_eagle3_aux_hidden_state_layers(self) -> tuple[int, ...]:
774774
# Delegate to underlying language model (Llama4ForCausalLM)
775775
assert hasattr(self.language_model,
776776
'get_eagle3_aux_hidden_state_layers')
777-
self.language_model.get_eagle3_aux_hidden_state_layers()
777+
return self.language_model.get_eagle3_aux_hidden_state_layers()
778778

779779
def _parse_and_validate_image_input(
780780
self, **kwargs: object) -> Optional[Llama4ImagePatchInputs]:

0 commit comments

Comments
 (0)