Skip to content

Commit

Permalink
Fix extra dimension
Browse files Browse the repository at this point in the history
Signed-off-by: DarkLight1337 <[email protected]>
  • Loading branch information
DarkLight1337 committed Dec 19, 2024
1 parent b84ff42 commit c3f1bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/multimodal/processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@ def _cached_call_fine(
)

for k, v in processed_mm_item.items():
processed_mm_items[k].append(v)
processed_mm_items[k].append(v[0])

# NOTE: Some processors do not accept mm-only input, in which case
# we have to fallback to processing `prompt` and `mm_data` together
Expand Down

0 comments on commit c3f1bde

Please sign in to comment.