mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2025-01-13 04:00:16 +00:00
chat-template
: add phi-3.5-vision-instruct
This commit is contained in:
parent
8738d94bbd
commit
cb7912ee74
@ -0,0 +1,4 @@
|
|||||||
|
<|user|>
|
||||||
|
What's your favourite LLM framework?<|end|>
|
||||||
|
<|assistant|>
|
||||||
|
llama.cpp!<|end|>
|
@ -0,0 +1,6 @@
|
|||||||
|
<|system|>
|
||||||
|
You only tell the truth.<|end|>
|
||||||
|
<|user|>
|
||||||
|
What's your favourite LLM framework?<|end|>
|
||||||
|
<|assistant|>
|
||||||
|
llama.cpp!<|end|>
|
@ -0,0 +1,4 @@
|
|||||||
|
{% for message in messages %}{{'<|' + message['role'] + '|>' + '
|
||||||
|
' + message['content'] + '<|end|>
|
||||||
|
' }}{% endfor %}{% if add_generation_prompt and messages[-1]['role'] != 'assistant' %}{{- '<|assistant|>
|
||||||
|
' -}}{% endif %}
|
@ -42,6 +42,7 @@ model_ids = [
|
|||||||
"microsoft/Phi-3-mini-4k-instruct",
|
"microsoft/Phi-3-mini-4k-instruct",
|
||||||
"microsoft/Phi-3-small-8k-instruct",
|
"microsoft/Phi-3-small-8k-instruct",
|
||||||
"microsoft/Phi-3.5-mini-instruct",
|
"microsoft/Phi-3.5-mini-instruct",
|
||||||
|
"microsoft/Phi-3.5-vision-instruct",
|
||||||
"mlabonne/AlphaMonarch-7B",
|
"mlabonne/AlphaMonarch-7B",
|
||||||
"CohereForAI/c4ai-command-r-plus",
|
"CohereForAI/c4ai-command-r-plus",
|
||||||
"NousResearch/Hermes-2-Pro-Llama-3-8B",
|
"NousResearch/Hermes-2-Pro-Llama-3-8B",
|
||||||
@ -56,14 +57,6 @@ model_ids = [
|
|||||||
"teknium/OpenHermes-2.5-Mistral-7B",
|
"teknium/OpenHermes-2.5-Mistral-7B",
|
||||||
"TheBloke/FusionNet_34Bx2_MoE-AWQ",
|
"TheBloke/FusionNet_34Bx2_MoE-AWQ",
|
||||||
|
|
||||||
# C++ minja templating broken:
|
|
||||||
# "THUDM/chatglm3-6b",
|
|
||||||
# "derek33125/project-angel-chatglm4",
|
|
||||||
|
|
||||||
# Cannot find chat template:
|
|
||||||
# "eachadea/vicuna-13b-1.1",
|
|
||||||
# "microsoft/Phi-3-vision-instruct",
|
|
||||||
|
|
||||||
# Gated models:
|
# Gated models:
|
||||||
"meta-llama/Llama-3.2-3B-Instruct",
|
"meta-llama/Llama-3.2-3B-Instruct",
|
||||||
"meta-llama/Meta-Llama-3.1-8B-Instruct",
|
"meta-llama/Meta-Llama-3.1-8B-Instruct",
|
||||||
|
Loading…
Reference in New Issue
Block a user