mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-14 10:27:48 -05:00
* chore: update rebase tests Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com> * chore: update partial clients before removing Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com> * fix: update clients parsing logics to work with 0.5 Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com> * chore: ignore ci runs as to run locally Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com> * chore: update async client tests Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com> * chore: update pre-commit Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com> --------- Signed-off-by: paperspace <29749331+aarnphm@users.noreply.github.com>
17 lines
363 B
Python
17 lines
363 B
Python
from __future__ import annotations
|
|
|
|
import pytest, typing as t
|
|
|
|
|
|
@pytest.fixture(
|
|
scope='function',
|
|
name='model_id',
|
|
params={
|
|
'meta-llama/Meta-Llama-3-8B-Instruct',
|
|
'casperhansen/llama-3-70b-instruct-awq',
|
|
'TheBloke/Nous-Hermes-2-Mixtral-8x7B-DPO-AWQ',
|
|
},
|
|
)
|
|
def fixture_model_id(request) -> t.Generator[str, None, None]:
|
|
yield request.param
|