ci: simplify multi-modality tests by using mixins (#9006)
This commit is contained in:
@@ -4,12 +4,11 @@ from test_vision_openai_server_common import *
|
||||
|
||||
from sglang.test.test_utils import (
|
||||
DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
||||
DEFAULT_URL_FOR_TEST,
|
||||
popen_launch_server,
|
||||
)
|
||||
|
||||
|
||||
class TestPixtralServer(TestOpenAIVisionServer):
|
||||
class TestPixtralServer(ImageOpenAITestMixin):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "mistral-community/pixtral-12b"
|
||||
@@ -29,11 +28,8 @@ class TestPixtralServer(TestOpenAIVisionServer):
|
||||
)
|
||||
cls.base_url += "/v1"
|
||||
|
||||
def test_video_chat_completion(self):
|
||||
pass
|
||||
|
||||
|
||||
class TestMistral3_1Server(TestOpenAIVisionServer):
|
||||
class TestMistral3_1Server(ImageOpenAITestMixin):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "unsloth/Mistral-Small-3.1-24B-Instruct-2503"
|
||||
@@ -53,11 +49,8 @@ class TestMistral3_1Server(TestOpenAIVisionServer):
|
||||
)
|
||||
cls.base_url += "/v1"
|
||||
|
||||
def test_video_chat_completion(self):
|
||||
pass
|
||||
|
||||
|
||||
class TestDeepseekVL2Server(TestOpenAIVisionServer):
|
||||
class TestDeepseekVL2Server(ImageOpenAITestMixin):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "deepseek-ai/deepseek-vl2-small"
|
||||
@@ -77,11 +70,8 @@ class TestDeepseekVL2Server(TestOpenAIVisionServer):
|
||||
)
|
||||
cls.base_url += "/v1"
|
||||
|
||||
def test_video_chat_completion(self):
|
||||
pass
|
||||
|
||||
|
||||
class TestJanusProServer(TestOpenAIVisionServer):
|
||||
class TestJanusProServer(ImageOpenAITestMixin):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "deepseek-ai/Janus-Pro-7B"
|
||||
@@ -104,10 +94,6 @@ class TestJanusProServer(TestOpenAIVisionServer):
|
||||
def test_video_images_chat_completion(self):
|
||||
pass
|
||||
|
||||
def test_single_image_chat_completion(self):
|
||||
# Skip this test because it is flaky
|
||||
pass
|
||||
|
||||
|
||||
## Skip for ci test
|
||||
# class TestLlama4Server(TestOpenAIVisionServer):
|
||||
@@ -135,11 +121,8 @@ class TestJanusProServer(TestOpenAIVisionServer):
|
||||
# )
|
||||
# cls.base_url += "/v1"
|
||||
|
||||
# def test_video_chat_completion(self):
|
||||
# pass
|
||||
|
||||
|
||||
class TestGemma3itServer(TestOpenAIVisionServer):
|
||||
class TestGemma3itServer(ImageOpenAITestMixin):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "google/gemma-3-4b-it"
|
||||
@@ -160,11 +143,8 @@ class TestGemma3itServer(TestOpenAIVisionServer):
|
||||
)
|
||||
cls.base_url += "/v1"
|
||||
|
||||
def test_video_chat_completion(self):
|
||||
pass
|
||||
|
||||
|
||||
class TestGemma3nServer(TestOpenAIVisionServer):
|
||||
class TestGemma3nServer(ImageOpenAITestMixin, AudioOpenAITestMixin):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "google/gemma-3n-E4B-it"
|
||||
@@ -184,16 +164,15 @@ class TestGemma3nServer(TestOpenAIVisionServer):
|
||||
)
|
||||
cls.base_url += "/v1"
|
||||
|
||||
def test_audio_chat_completion(self):
|
||||
self._test_audio_speech_completion()
|
||||
# This _test_audio_ambient_completion test is way too complicated to pass for a small LLM
|
||||
# self._test_audio_ambient_completion()
|
||||
# This _test_audio_ambient_completion test is way too complicated to pass for a small LLM
|
||||
def test_audio_ambient_completion(self):
|
||||
pass
|
||||
|
||||
def _test_mixed_image_audio_chat_completion(self):
|
||||
self._test_mixed_image_audio_chat_completion()
|
||||
|
||||
|
||||
class TestQwen2AudioServer(TestOpenAIVisionServer):
|
||||
class TestQwen2AudioServer(AudioOpenAITestMixin):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "Qwen/Qwen2-Audio-7B-Instruct"
|
||||
@@ -211,36 +190,8 @@ class TestQwen2AudioServer(TestOpenAIVisionServer):
|
||||
)
|
||||
cls.base_url += "/v1"
|
||||
|
||||
def test_audio_chat_completion(self):
|
||||
self._test_audio_speech_completion()
|
||||
self._test_audio_ambient_completion()
|
||||
|
||||
# Qwen2Audio does not support image
|
||||
def test_single_image_chat_completion(self):
|
||||
pass
|
||||
|
||||
# Qwen2Audio does not support image
|
||||
def test_multi_turn_chat_completion(self):
|
||||
pass
|
||||
|
||||
# Qwen2Audio does not support image
|
||||
def test_multi_images_chat_completion(self):
|
||||
pass
|
||||
|
||||
# Qwen2Audio does not support image
|
||||
def test_video_images_chat_completion(self):
|
||||
pass
|
||||
|
||||
# Qwen2Audio does not support image
|
||||
def test_regex(self):
|
||||
pass
|
||||
|
||||
# Qwen2Audio does not support image
|
||||
def test_mixed_batch(self):
|
||||
pass
|
||||
|
||||
|
||||
class TestKimiVLServer(TestOpenAIVisionServer):
|
||||
class TestKimiVLServer(ImageOpenAITestMixin):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "moonshotai/Kimi-VL-A3B-Instruct"
|
||||
@@ -266,91 +217,6 @@ class TestKimiVLServer(TestOpenAIVisionServer):
|
||||
pass
|
||||
|
||||
|
||||
class TestPhi4MMServer(TestOpenAIVisionServer):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
# Manually download LoRA adapter_config.json as it's not downloaded by the model loader by default.
|
||||
from huggingface_hub import constants, snapshot_download
|
||||
|
||||
snapshot_download(
|
||||
"microsoft/Phi-4-multimodal-instruct",
|
||||
allow_patterns=["**/adapter_config.json"],
|
||||
)
|
||||
|
||||
cls.model = "microsoft/Phi-4-multimodal-instruct"
|
||||
cls.base_url = DEFAULT_URL_FOR_TEST
|
||||
cls.api_key = "sk-123456"
|
||||
|
||||
revision = "33e62acdd07cd7d6635badd529aa0a3467bb9c6a"
|
||||
cls.process = popen_launch_server(
|
||||
cls.model,
|
||||
cls.base_url,
|
||||
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
||||
other_args=[
|
||||
"--trust-remote-code",
|
||||
"--mem-fraction-static",
|
||||
"0.70",
|
||||
"--disable-radix-cache",
|
||||
"--max-loras-per-batch",
|
||||
"2",
|
||||
"--revision",
|
||||
revision,
|
||||
"--lora-paths",
|
||||
f"vision={constants.HF_HUB_CACHE}/models--microsoft--Phi-4-multimodal-instruct/snapshots/{revision}/vision-lora",
|
||||
f"speech={constants.HF_HUB_CACHE}/models--microsoft--Phi-4-multimodal-instruct/snapshots/{revision}/speech-lora",
|
||||
"--cuda-graph-max-bs",
|
||||
"4",
|
||||
],
|
||||
)
|
||||
cls.base_url += "/v1"
|
||||
|
||||
def get_vision_request_kwargs(self):
|
||||
return {
|
||||
"extra_body": {
|
||||
"lora_path": "vision",
|
||||
"top_k": 1,
|
||||
"top_p": 1.0,
|
||||
}
|
||||
}
|
||||
|
||||
def get_audio_request_kwargs(self):
|
||||
return {
|
||||
"extra_body": {
|
||||
"lora_path": "speech",
|
||||
"top_k": 1,
|
||||
"top_p": 1.0,
|
||||
}
|
||||
}
|
||||
|
||||
def test_audio_chat_completion(self):
|
||||
self._test_audio_speech_completion()
|
||||
# This _test_audio_ambient_completion test is way too complicated to pass for a small LLM
|
||||
# self._test_audio_ambient_completion()
|
||||
|
||||
|
||||
class TestVILAServer(TestOpenAIVisionServer):
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
cls.model = "Efficient-Large-Model/NVILA-Lite-2B-hf-0626"
|
||||
cls.base_url = DEFAULT_URL_FOR_TEST
|
||||
cls.api_key = "sk-123456"
|
||||
cls.revision = "6bde1de5964b40e61c802b375fff419edc867506"
|
||||
cls.process = popen_launch_server(
|
||||
cls.model,
|
||||
cls.base_url,
|
||||
timeout=DEFAULT_TIMEOUT_FOR_SERVER_LAUNCH,
|
||||
api_key=cls.api_key,
|
||||
other_args=[
|
||||
"--trust-remote-code",
|
||||
"--context-length=65536",
|
||||
f"--revision={cls.revision}",
|
||||
"--cuda-graph-max-bs",
|
||||
"4",
|
||||
],
|
||||
)
|
||||
cls.base_url += "/v1"
|
||||
|
||||
|
||||
# Skip for ci test
|
||||
# class TestGLM41VServer(TestOpenAIVisionServer):
|
||||
# @classmethod
|
||||
@@ -379,5 +245,10 @@ class TestVILAServer(TestOpenAIVisionServer):
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
del TestOpenAIVisionServer
|
||||
del (
|
||||
TestOpenAIOmniServerBase,
|
||||
ImageOpenAITestMixin,
|
||||
VideoOpenAITestMixin,
|
||||
AudioOpenAITestMixin,
|
||||
)
|
||||
unittest.main()
|
||||
|
||||
Reference in New Issue
Block a user