"docs/source/getting_started/troubleshooting.md" did not exist on "6ad909fdda54f91379bbee7590a37e38600b6204"
test_openai_server.py 1.84 KB
Newer Older
1
import openai  # use the official client for correctness check
2
import pytest
3
4
5
6
7
# using Ray for overall ease of process management, parallel requests,
# and debugging.
import ray
# downloading lora to test lora requests
from huggingface_hub import snapshot_download
8

9
from ..utils import RemoteOpenAIServer
10

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

17
pytestmark = pytest.mark.openai
18
19


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


25
@pytest.fixture(scope="module")
26
def ray_ctx():
27
    ray.init()
28
29
30
31
32
33
34
    yield
    ray.shutdown()


@pytest.fixture(scope="module")
def server(zephyr_lora_files, ray_ctx):
    return RemoteOpenAIServer([
35
36
        "--model",
        MODEL_NAME,
37
        # use half precision for speed and memory savings in CI environment
38
        "--dtype",
39
        "bfloat16",
40
        "--max-model-len",
41
42
        "8192",
        "--enforce-eager",
43
44
45
46
47
48
49
50
51
52
        # 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",
53
        "128",
54
55
56
    ])


57
@pytest.fixture(scope="module")
58
59
def client(server):
    return server.get_async_client()
60
61


62
@pytest.mark.asyncio
63
async def test_check_models(client: openai.AsyncOpenAI):
64
65
66
67
68
69
70
71
    models = await client.models.list()
    models = models.data
    served_model = models[0]
    lora_models = models[1:]
    assert served_model.id == MODEL_NAME
    assert all(model.root == MODEL_NAME for model in models)
    assert lora_models[0].id == "zephyr-lora"
    assert lora_models[1].id == "zephyr-lora2"