duyntnet/Einstein-v6-7B-imatrix-GGUF
0482
Quantizations of https://huggingface.co/Weyaxi/Einstein-v6-7B
From original readme
💬 Prompt Template
You can use this prompt template while using the model:
ChatML
<|im_start|>system
{system}<|im_end|>
<|im_start|>user
{user}<|im_end|>
<|im_start|>assistant
{asistant}<|im_end|>This prompt template is available as a chat template, which means you can format messages using the tokenizer.apply_chat_template() method:
messages = [
{"role": "system", "content": "You are helpful AI asistant."},
{"role": "user", "content": "Hello!"}
]
gen_input = tokenizer.apply_chat_template(message, return_tensors="pt")
model.generate(**gen_input)