test_short_mm_context.py 1.07 KB
Newer Older
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
3

4
import os
5
6
7
import pytest

from ..conftest import IMAGE_ASSETS
zhuwenwen's avatar
zhuwenwen committed
8
from ..utils import models_path_prefix
9

10
11
12
13
14
15
HF_IMAGE_PROMPTS = IMAGE_ASSETS.prompts(
    {
        "stop_sign": "USER: <image>\nWhat's the content of the image?\nASSISTANT:",
        "cherry_blossom": "USER: <image>\nWhat is the season?\nASSISTANT:",
    }
)
16

zhuwenwen's avatar
zhuwenwen committed
17
models = [os.path.join(models_path_prefix, "llava-hf/llava-1.5-7b-hf")]
18
19
20
21
22
23


@pytest.mark.parametrize("model", models)
def test_context_length_too_short(vllm_runner, image_assets, model):
    images = [asset.pil_image for asset in image_assets]

24
    with pytest.raises(ValueError, match="longer than the maximum model length"):
25
26
27
28
        vllm_model = vllm_runner(
            model,
            max_model_len=128,  # LLaVA has a feature size of 576
            enforce_eager=True,
29
            load_format="dummy",
30
31
32
        )

        with vllm_model:
33
34
35
            vllm_model.generate_greedy(
                [HF_IMAGE_PROMPTS[0]], max_tokens=1, images=[images[0]]
            )