Skip to content

Commit 4e921bf

Browse files
committed
fix: adjust trtllm looper for video chunk enum
1 parent ffc2656 commit 4e921bf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backends/trtllm/src/looper.rs

+1
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ impl TensorRtLlmBackendV2 {
301301
1 => match request.inputs.first().expect("Single item-chunk") {
302302
Chunk::Text(_) => Ok(()),
303303
Chunk::Image(_) => Err(ValidationError(UnsupportedModality("image"))),
304+
Chunk::Video(_) => Err(ValidationError(UnsupportedModality("video"))),
304305
},
305306
}
306307
}

0 commit comments

Comments
 (0)