Skip to content

Commit

Permalink
[Bugfix] Allow token ID-only inputs in Qwen2-Audio (#10536)
Browse files Browse the repository at this point in the history
Signed-off-by: DarkLight1337 <[email protected]>
  • Loading branch information
DarkLight1337 authored Nov 21, 2024
1 parent c51e397 commit e7a8341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/model_executor/models/qwen2_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def input_processor_for_qwen2_audio(

return token_inputs(
prompt_token_ids=new_input_ids,
prompt=inputs['prompt'],
prompt=inputs.get("prompt"),
multi_modal_data=multi_modal_data,
)

Expand Down

0 comments on commit e7a8341

Please sign in to comment.