File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
tests/models/multimodal/processing Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 41
41
]
42
42
REPO_ID_TO_SKIP = {
43
43
"nm-testing/pixtral-12b-FP8-dynamic" : "duplicated test" ,
44
- # FIXME(Isotr0py): enable GPT-OSS based InternVL3.5 model
45
- # after support PP for GPT-OSS
46
- "OpenGVLab/InternVL3_5-GPT-OSS-20B-A4B-Preview" : "Broken model" ,
47
44
}
48
45
49
46
ImageInput = list [Image .Image ]
Original file line number Diff line number Diff line change @@ -378,10 +378,7 @@ def modality_group_func(
378
378
elif len (mm_input ) == 1 :
379
379
return next (iter (mm_input .keys ()))
380
380
381
- # FIXME(Isotr0py): Modality of mm_input from legacy pipeline is empty,
382
- # this is used to make InternVL with legacy pipeline still work with v1.
383
- else :
384
- return ""
381
+ raise AssertionError ("This line should be unreachable." )
385
382
386
383
return [
387
384
list (group ) for _ , group in groupby (mm_inputs , key = modality_group_func )
You can’t perform that action at this time.
0 commit comments