Unverified Commit d066e520 authored by Cyrus Leung's avatar Cyrus Leung Committed by GitHub
Browse files

[Bugfix] Fix chat utils tests (#18139)


Signed-off-by: default avatarDarkLight1337 <tlleungac@connect.ust.hk>
parent c8ea982d
...@@ -845,10 +845,10 @@ def test_resolve_hf_chat_template(sample_json_schema, model, use_tools): ...@@ -845,10 +845,10 @@ def test_resolve_hf_chat_template(sample_json_schema, model, use_tools):
# Test detecting the tokenizer's chat_template # Test detecting the tokenizer's chat_template
chat_template = resolve_hf_chat_template( chat_template = resolve_hf_chat_template(
model_config,
tokenizer, tokenizer,
chat_template=None, chat_template=None,
tools=tools, tools=tools,
model_config=model_config,
) )
assert isinstance(chat_template, str) assert isinstance(chat_template, str)
...@@ -890,10 +890,10 @@ def test_resolve_content_format_hf_defined(model, expected_format): ...@@ -890,10 +890,10 @@ def test_resolve_content_format_hf_defined(model, expected_format):
# Test detecting the tokenizer's chat_template # Test detecting the tokenizer's chat_template
chat_template = resolve_hf_chat_template( chat_template = resolve_hf_chat_template(
model_config,
tokenizer, tokenizer,
chat_template=None, chat_template=None,
tools=None, tools=None,
model_config=model_config,
) )
assert isinstance(chat_template, str) assert isinstance(chat_template, str)
...@@ -949,10 +949,10 @@ def test_resolve_content_format_fallbacks(model, expected_format): ...@@ -949,10 +949,10 @@ def test_resolve_content_format_fallbacks(model, expected_format):
# Test detecting the tokenizer's chat_template # Test detecting the tokenizer's chat_template
chat_template = resolve_hf_chat_template( chat_template = resolve_hf_chat_template(
model_config,
tokenizer, tokenizer,
chat_template=None, chat_template=None,
tools=None, tools=None,
model_config=model_config,
) )
assert isinstance(chat_template, str) assert isinstance(chat_template, str)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment