feat: llama3.3

This commit is contained in:
suluyana
2024-12-07 09:08:36 +08:00
parent e90bc46bc5
commit aa8f66677f
2 changed files with 8 additions and 0 deletions

View File

@@ -53,6 +53,12 @@ def no_multi_modal():
template_info = [
# llama
## "llama3"
TemplateInfo(
template_regex=
f'.*{cases("llama3.3", "llama-3.3")}.*',
modelfile_prefix=
'https://modelscope.oss-cn-beijing.aliyuncs.com/llm_template/ollama/llama3.3',
),
TemplateInfo(
template_regex=
f'.*{cases("llama3.2", "llama-3.2")}.*{cases("vision")}.*',

View File

@@ -300,6 +300,8 @@ class TestToOllama(unittest.TestCase):
'paraphrase-multilingual')
_test_check_tmpl_type('bartowski/Marco-o1-GGUF', 'marco-o1')
_test_check_tmpl_type('Qwen/QwQ-32B-Preview', 'qwq')
_test_check_tmpl_type('LLM-Research/Llama-3.3-70B-Instruct',
'llama3.3')
if __name__ == '__main__':