"vllm/vscode:/vscode.git/clone" did not exist on "50632adc583fe1af8e2ee112b48c61c14153574f"
test_models.py 1.97 KB
Newer Older
1
2
# SPDX-License-Identifier: Apache-2.0

3
import openai  # use the official client for correctness check
4
import pytest
5
import os
6
import pytest_asyncio
7
8
# downloading lora to test lora requests
from huggingface_hub import snapshot_download
9

10
from ...utils import RemoteOpenAIServer, models_path_prefix
11

12
# any model with a chat template should work here
13
MODEL_NAME = os.path.join(models_path_prefix, "HuggingFaceH4/zephyr-7b-beta")
14
15
# technically this needs Mistral-7B-v0.1 as base, but we're not testing
# generation quality here
16
LORA_NAME = os.path.join(models_path_prefix, "typeof/zephyr-7b-beta-lora")
17
18


19
@pytest.fixture(scope="module")
20
def zephyr_lora_files():
21
22
    # return snapshot_download(repo_id=LORA_NAME)
    return LORA_NAME
23
24


25
@pytest.fixture(scope="module")
26
def server(zephyr_lora_files):
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
    args = [
        # use half precision for speed and memory savings in CI environment
        "--dtype",
        "bfloat16",
        "--max-model-len",
        "8192",
        "--enforce-eager",
        # lora config below
        "--enable-lora",
        "--lora-modules",
        f"zephyr-lora={zephyr_lora_files}",
        f"zephyr-lora2={zephyr_lora_files}",
        "--max-lora-rank",
        "64",
        "--max-cpu-loras",
        "2",
        "--max-num-seqs",
        "128",
    ]

    with RemoteOpenAIServer(MODEL_NAME, args) as remote_server:
48
        yield remote_server
49
50


51
52
53
54
@pytest_asyncio.fixture
async def client(server):
    async with server.get_async_client() as async_client:
        yield async_client
55
56


57
@pytest.mark.asyncio
58
async def test_check_models(client: openai.AsyncOpenAI, zephyr_lora_files):
59
60
61
62
63
    models = await client.models.list()
    models = models.data
    served_model = models[0]
    lora_models = models[1:]
    assert served_model.id == MODEL_NAME
64
65
66
    assert served_model.root == MODEL_NAME
    assert all(lora_model.root == zephyr_lora_files
               for lora_model in lora_models)
67
68
    assert lora_models[0].id == "zephyr-lora"
    assert lora_models[1].id == "zephyr-lora2"