Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
638d8e68
Unverified
Commit
638d8e68
authored
Feb 18, 2026
by
knarangN
Committed by
GitHub
Feb 18, 2026
Browse files
test: Add multimodal video tests to nightly CI pipeline (#6023)
Signed-off-by:
Kavita Narang
<
knarang@nvidia.com
>
parent
aa16ccf5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
4 deletions
+34
-4
tests/serve/test_vllm.py
tests/serve/test_vllm.py
+34
-4
No files found.
tests/serve/test_vllm.py
View file @
638d8e68
...
...
@@ -455,16 +455,45 @@ vllm_configs = {
),
],
),
# TODO: Update this test case when we have video multimodal support in vllm official components
# Video multimodal tests for nightly CI pipeline
# These tests validate video inference capabilities with LLaVA-NeXT-Video model
# Reference: Linear OPS-3015
"multimodal_video_agg"
:
VLLMConfig
(
name
=
"multimodal_video_agg"
,
directory
=
os
.
path
.
join
(
WORKSPACE_DIR
,
"examples/multimodal"
),
script_name
=
"video_agg.sh"
,
marks
=
[
pytest
.
mark
.
gpu_2
,
pytest
.
mark
.
nightly
],
model
=
"llava-hf/LLaVA-NeXT-Video-7B-hf"
,
delayed_start
=
0
,
delayed_start
=
6
0
,
# Video models require longer loading time
script_args
=
[
"--model"
,
"llava-hf/LLaVA-NeXT-Video-7B-hf"
],
timeout
=
360
,
timeout
=
600
,
# 10 minutes for video processing overhead
request_payloads
=
[
chat_payload
(
[
{
"type"
:
"text"
,
"text"
:
"Describe the video in detail"
},
{
"type"
:
"video_url"
,
"video_url"
:
{
"url"
:
"https://storage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4"
},
},
],
repeat_count
=
1
,
expected_response
=
[
"rabbit"
],
temperature
=
0.0
,
max_tokens
=
100
,
)
],
),
"multimodal_video_disagg"
:
VLLMConfig
(
name
=
"multimodal_video_disagg"
,
directory
=
os
.
path
.
join
(
WORKSPACE_DIR
,
"examples/multimodal"
),
script_name
=
"video_disagg.sh"
,
marks
=
[
pytest
.
mark
.
gpu_2
,
pytest
.
mark
.
nightly
],
model
=
"llava-hf/LLaVA-NeXT-Video-7B-hf"
,
delayed_start
=
60
,
# Video models require longer loading time
script_args
=
[
"--model"
,
"llava-hf/LLaVA-NeXT-Video-7B-hf"
],
timeout
=
600
,
# 10 minutes for video processing overhead
request_payloads
=
[
chat_payload
(
[
...
...
@@ -478,7 +507,8 @@ vllm_configs = {
],
repeat_count
=
1
,
expected_response
=
[
"rabbit"
],
temperature
=
0.7
,
temperature
=
0.0
,
max_tokens
=
100
,
)
],
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment