File size: 16,701 Bytes
4a28d4d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | import pytest
from lmdeploy.model import MODELS
HF_MODELS_WITH_CHAT_TEMPLATES = [
'Qwen/Qwen1.5-7B-Chat',
'Qwen/Qwen2.5-7B-Instruct',
'Qwen/Qwen3-8B',
'Qwen/QwQ-32B',
'Qwen/QwQ-32B-Preview',
'Qwen/QwQ-32B-AWQ',
'Qwen/Qwen2.5-VL-7B-Instruct',
'Qwen/Qwen2-VL-7B-Instruct',
'internlm/internlm2-chat-7b',
'internlm/internlm2_5-7b-chat',
'internlm/internlm3-8b-instruct',
# 'internlm/Intern-S1',
# 'internlm/Intern-S1-mini',
'OpenGVLab/InternVL-Chat-V1-2',
'OpenGVLab/InternVL-Chat-V1-5',
'OpenGVLab/Mini-InternVL-Chat-2B-V1-5',
'OpenGVLab/InternVL2-2B',
'OpenGVLab/InternVL2-4B',
'OpenGVLab/InternVL2-8B',
'OpenGVLab/InternVL2_5-2B',
'OpenGVLab/InternVL2_5-4B',
'OpenGVLab/InternVL2_5-8B',
'OpenGVLab/InternVL3-2B',
'OpenGVLab/InternVL3-8B',
'OpenGVLab/InternVL3-9B',
'OpenGVLab/InternVL3_5-1B',
'OpenGVLab/InternVL3_5-4B',
'OpenGVLab/InternVL3_5-8B',
'OpenGVLab/InternVL3_5-GPT-OSS-20B-A4B-Preview',
'deepseek-ai/DeepSeek-V2-Lite',
'deepseek-ai/DeepSeek-V3',
'deepseek-ai/DeepSeek-R1',
'deepseek-ai/DeepSeek-R1-Zero',
'deepseek-ai/DeepSeek-V3.1',
'deepseek-ai/deepseek-coder-1.3b-instruct',
'deepseek-ai/DeepSeek-R1-Distill-Llama-8B',
'deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B',
'deepseek-ai/DeepSeek-R1-Distill-Qwen-7B',
'zai-org/chatglm3-6b',
'zai-org/glm-4-9b-chat',
'zai-org/codegeex4-all-9b',
'zai-org/cogvlm2-llama3-chat-19B',
'microsoft/Phi-3-mini-128k-instruct',
'microsoft/Phi-3-vision-128k-instruct',
'microsoft/Phi-3.5-mini-instruct',
'microsoft/Phi-3.5-vision-instruct',
'microsoft/Phi-3.5-MoE-instruct',
'01-ai/Yi-1.5-34B-Chat',
# Accessing the following models is supposed to be authenticated
# 'openbmb/MiniCPM-V-2_6',
# 'google/gemma-3-4b-it',
]
@pytest.mark.parametrize('model_path', HF_MODELS_WITH_CHAT_TEMPLATES)
def test_HFChatTemplate_get_prompt_sequence_start_True(model_path):
model = MODELS.get('hf')(model_path=model_path)
prompt = 'How to apply chat template using transformers?'
messages = [{'role': 'user', 'content': prompt}]
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
expected = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
assert model.get_prompt(prompt, sequence_start=True) == expected
@pytest.mark.parametrize('model_path', HF_MODELS_WITH_CHAT_TEMPLATES)
def test_HFChatTemplate_message2prompt_sequence_start_True(model_path):
model = MODELS.get('hf')(model_path=model_path)
prompt = 'How to apply chat template using transformers?'
messages = [{'role': 'user', 'content': prompt}]
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
expected = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
assert model.messages2prompt(prompt, sequence_start=True) == expected
assert model.messages2prompt(messages, sequence_start=True) == expected
def test_base_model():
model = MODELS.get('internlm')(capability='completion')
assert model.capability == 'completion'
assert model.get_prompt('hi') == 'hi'
assert model.messages2prompt('test') == 'test'
def test_vicuna():
prompt = 'hello, can u introduce yourself'
model = MODELS.get('vicuna')(capability='completion')
assert model.get_prompt(prompt, sequence_start=True) == prompt
assert model.get_prompt(prompt, sequence_start=False) == prompt
model = MODELS.get('vicuna')(capability='chat', system='Provide answers in Python')
assert model.get_prompt(prompt, sequence_start=True) != prompt
assert model.get_prompt(prompt, sequence_start=False) != prompt
assert model.system == 'Provide answers in Python'
model = MODELS.get('vicuna')(capability='voice')
_prompt = None
with pytest.raises(AssertionError):
_prompt = model.get_prompt(prompt, sequence_start=True)
assert _prompt is None
def test_prefix_response():
model = MODELS.get('hf')(model_path='Qwen/Qwen3-8B')
messages = [dict(role='assistant', content='prefix test')]
prompt = model.messages2prompt(messages)
assert prompt[-len('prefix test'):] == 'prefix test'
def test_internlm_chat():
prompt = 'hello, can u introduce yourself'
model = MODELS.get('internlm')(capability='completion')
assert model.get_prompt(prompt, sequence_start=True) == prompt
assert model.get_prompt(prompt, sequence_start=False) == prompt
assert model.stop_words is not None
assert model.system == '<|System|>:'
model = MODELS.get('internlm')(capability='chat', system='Provide answers in Python')
assert model.get_prompt(prompt, sequence_start=True) != prompt
assert model.get_prompt(prompt, sequence_start=False) != prompt
assert model.system == 'Provide answers in Python'
model = MODELS.get('internlm')(capability='voice')
_prompt = None
with pytest.raises(AssertionError):
_prompt = model.get_prompt(prompt, sequence_start=True)
assert _prompt is None
def test_baichuan():
prompt = 'hello, can u introduce yourself'
model = MODELS.get('baichuan2')(capability='completion')
assert model.get_prompt(prompt, sequence_start=True) == prompt
assert model.get_prompt(prompt, sequence_start=False) == prompt
assert model.stop_words is None
model = MODELS.get('baichuan2')(capability='chat')
_prompt = model.get_prompt(prompt, sequence_start=True)
assert _prompt == '<reserved_106>' + prompt + '<reserved_107>'
def test_llama2():
prompt = 'hello, can u introduce yourself'
model = MODELS.get('llama2')(capability='completion')
assert model.get_prompt(prompt, sequence_start=True) == prompt
assert model.get_prompt(prompt, sequence_start=False) == prompt
assert model.stop_words is None
assert model.meta_instruction is not None
model = MODELS.get('llama2')(capability='chat', meta_instruction='Provide answers in Python')
assert model.get_prompt(prompt, sequence_start=True) != prompt
assert model.get_prompt(prompt, sequence_start=False) != prompt
assert model.meta_instruction == 'Provide answers in Python'
model = MODELS.get('llama2')(capability='voice')
_prompt = None
with pytest.raises(AssertionError):
_prompt = model.get_prompt(prompt, sequence_start=True)
assert _prompt is None
def test_codellama_completion():
model = MODELS.get('codellama')(capability='completion')
prompt = """\
import socket
def ping_exponential_backoff(host: str):"""
assert model.get_prompt(prompt) == prompt
assert model.get_prompt(prompt, sequence_start=False) == prompt
assert model.stop_words is None
def test_codellama_infilling():
model = MODELS.get('codellama')(capability='infilling')
prompt = '''def remove_non_ascii(s: str) -> str:
""" <FILL>
return result
'''
_prompt = model.get_prompt(prompt)
assert _prompt.find('<FILL>') == -1
assert model.stop_words == ['<EOT>']
model = MODELS.get('codellama')(capability='infilling', suffix_first=True)
_prompt = model.get_prompt(prompt)
assert _prompt.find('<FILL>') == -1
def test_codellama_chat():
model = MODELS.get('codellama')(capability='chat', system='Provide answers in Python')
prompt = 'Write a function that computes the set of sums of all contiguous sublists of a given list.' # noqa: E501
_prompt = model.get_prompt(prompt, sequence_start=True)
assert _prompt.find('Provide answers in Python') != -1
_prompt = model.get_prompt(prompt, sequence_start=False)
assert _prompt.find('Provide answers in Python') == -1
assert model.stop_words is None
def test_codellama_python_specialist():
model = MODELS.get('codellama')(capability='python')
prompt = """
def remove_non_ascii(s: str) -> str:
"""
assert model.get_prompt(prompt, sequence_start=True) == prompt
assert model.get_prompt(prompt, sequence_start=False) == prompt
assert model.stop_words is None
def test_codellama_others():
model = None
with pytest.raises(AssertionError):
model = MODELS.get('codellama')(capability='java')
assert model is None
@pytest.mark.parametrize(
'model_path_or_name',
['deepseek-ai/deepseek-vl2-tiny', 'deepseek-ai/deepseek-vl2-small', 'deepseek-ai/deepseek-vl2'])
def test_deepseek_vl2(model_path_or_name):
chat_template = MODELS.get('deepseek-vl2')()
messages = [{
'role': 'user',
'content': 'This is image_1: <image>\n'
'This is image_2: <image>\n'
'This is image_3: <image>\n Can you tell me what are in the images?',
'images': [
'images/multi_image_1.jpeg',
'images/multi_image_2.jpeg',
'images/multi_image_3.jpeg',
],
}, {
'role': 'assistant',
'content': ''
}]
ref = '<|User|>: This is image_1: <image>\nThis is image_2: <image>\nThis is image_3: <image>' + \
'\n Can you tell me what are in the images?\n\n<|Assistant|>:'
lm_res = chat_template.messages2prompt(messages)
assert ref == lm_res
@pytest.mark.parametrize('model_path', ['Qwen/Qwen3-30B-A3B', 'Qwen/Qwen2.5-7B-Instruct', 'Qwen/Qwen3.5-35B-A3B'])
@pytest.mark.parametrize('enable_thinking', [True, False, None])
def test_qwen3(model_path, enable_thinking):
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
chat_template = MODELS.get('hf')(model_path)
messages = [{
'role': 'system',
'content': 'you are a helpful assistant'
}, {
'role': 'user',
'content': 'who are you'
}, {
'role': 'assistant',
'content': 'I am an AI'
}, {
'role': 'user',
'content': 'AGI is?'
}]
if enable_thinking is None:
ref = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
else:
ref = tokenizer.apply_chat_template(messages,
tokenize=False,
add_generation_prompt=True,
enable_thinking=enable_thinking)
lm_res = chat_template.messages2prompt(messages, enable_thinking=enable_thinking)
assert ref == lm_res
# TODO(lvhan): bring this case back when internlm/Intern-S1 fix tokenizer
# @pytest.mark.parametrize('model_path', ['internlm/Intern-S1'])
# @pytest.mark.parametrize('enable_thinking', [None, True, False])
# @pytest.mark.parametrize('has_user_sys', [True, False])
# def test_interns1(model_path, enable_thinking, has_user_sys):
# from transformers import AutoTokenizer
# try:
# tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
# except OSError:
# pytest.skip(reason=f'{model_path} not exists')
# chat_template = MODELS.get('hf')(model_path)
# messages = [{
# 'role': 'system',
# 'content': 'you are a helpful assistant'
# }, {
# 'role': 'user',
# 'content': 'who are you'
# }, {
# 'role': 'assistant',
# 'content': 'I am an AI'
# }, {
# 'role': 'user',
# 'content': 'AGI is?'
# }]
# if not has_user_sys:
# messages = messages[1:]
# if enable_thinking is None:
# ref = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
# else:
# ref = tokenizer.apply_chat_template(messages,
# tokenize=False,
# add_generation_prompt=True,
# enable_thinking=enable_thinking)
# lm_res = chat_template.messages2prompt(messages, enable_thinking=enable_thinking)
# assert ref == lm_res
@pytest.mark.parametrize('model_path', ['Qwen/Qwen1.5-7B-Chat', 'Qwen/Qwen2.5-7B-Instruct', 'Qwen/Qwen3-8B'])
def test_HFChatTemplate_get_prompt_sequence_start_False_Qwen(model_path):
model = MODELS.get('hf')(model_path=model_path)
assert model.stop_words == ['<|im_end|>']
prompt = 'How to apply chat template using transformers?'
assert model.get_prompt(prompt,
sequence_start=False) == f'<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant\n'
@pytest.mark.parametrize('model_path', ['Qwen/Qwen3.5-35B-A3B'])
def test_HFChatTemplate_get_prompt_sequence_start_False_Qwen3_5(model_path):
model = MODELS.get('hf')(model_path=model_path)
assert model.stop_words == ['<|im_end|>']
prompt = 'How to apply chat template using transformers?'
assert model.get_prompt(
prompt, sequence_start=False) == f'<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant\n<think>\n'
@pytest.mark.parametrize('model_path', ['deepseek-ai/DeepSeek-V3'])
def test_HFChatTemplate_DeepSeek_V3(model_path):
model = MODELS.get('hf')(model_path=model_path)
assert model.stop_words == ['<|end▁of▁sentence|>']
prompt = 'How to apply chat template using transformers?'
assert model.get_prompt(prompt, sequence_start=False) == f'<|User|>{prompt}<|Assistant|>'
@pytest.mark.parametrize('model_path', ['deepseek-ai/DeepSeek-R1'])
def test_HFChatTemplate_DeepSeek_thinking(model_path):
model = MODELS.get('hf')(model_path=model_path)
assert model.stop_words == ['<|end▁of▁sentence|>']
prompt = 'How to apply chat template using transformers?'
assert model.get_prompt(prompt, sequence_start=False) == f'<|User|>{prompt}<|Assistant|><think>\n'
@pytest.mark.parametrize('model_path', ['Qwen/Qwen3-VL-8B-Instruct', 'Qwen/Qwen3.5-35B-A3B'])
def test_HFChatTemplate_Qwen3_VL_with_vision_id(model_path):
model = MODELS.get('hf')(model_path=model_path)
# testcase from https://github.com/QwenLM/Qwen3-VL
messages = [
{
'role': 'user',
'content': [{
'type': 'image'
}, {
'type': 'text',
'text': 'Hello, how are you?'
}],
},
{
'role': 'assistant',
'content': "I'm doing well, thank you for asking. How can I assist you today?",
},
{
'role':
'user',
'content': [
{
'type': 'text',
'text': 'Can you describe these images and video?'
},
{
'type': 'image'
},
{
'type': 'image'
},
{
'type': 'video'
},
{
'type': 'text',
'text': 'These are from my vacation.'
},
],
},
{
'role':
'assistant',
'content':
"""I'd be happy to describe the images and video for you.
Could you please provide more context about your vacation?""",
},
{
'role': 'user',
'content': 'It was a trip to the mountains. Can you see the details in the images and video?',
},
]
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True)
expected = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True, add_vision_id=True)
chat_template_kwargs = dict(add_vision_id=True)
lm_res = model.messages2prompt(messages, **chat_template_kwargs)
assert expected == lm_res
@pytest.mark.parametrize('model_path', ['google/gemma-2-9b-it', 'google/gemma-3-12b-it'])
def test_gemma_chat_template(model_path):
messages = [{'role': 'user', 'content': 'who are you'}]
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained(model_path)
expected = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
model = MODELS.get('hf')(model_path=model_path)
lm_res = model.messages2prompt(messages)
assert expected == lm_res
messages += [{'role': 'assistant', 'content': 'I am an AI'}, {'role': 'user', 'content': 'AGI is?'}]
lm_res = model.messages2prompt(messages, sequence_start=False)
assert lm_res == """<start_of_turn>user
who are you<end_of_turn>
<start_of_turn>model
I am an AI<end_of_turn>
<start_of_turn>user
AGI is?<end_of_turn>
<start_of_turn>model
"""
|