test_skip_tokenizer_init.py 1.03 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
4
5
6
import pytest

from vllm.entrypoints.llm import LLM
from vllm.sampling_params import SamplingParams
7
8
import os
from ..utils import models_path_prefix
9
10


11
@pytest.mark.parametrize("model", [os.path.join(models_path_prefix, "facebook/opt-125m")])
12
13
14
15
16
17
def test_skip_tokenizer_initialization(model: str):
    # This test checks if the flag skip_tokenizer_init skips the initialization
    # of tokenizer and detokenizer. The generated output is expected to contain
    # token ids.
    llm = LLM(model=model, skip_tokenizer_init=True)
    sampling_params = SamplingParams(prompt_logprobs=True, detokenize=True)
18
19

    with pytest.raises(ValueError, match="cannot pass text prompts when"):
20
        llm.generate("abc", sampling_params)
21

22
    outputs = llm.generate({"prompt_token_ids": [1, 2, 3]},
23
24
25
26
27
28
                           sampling_params=sampling_params)
    assert len(outputs) > 0
    completions = outputs[0].outputs
    assert len(completions) > 0
    assert completions[0].text == ""
    assert completions[0].token_ids