CoolFace
Modelpublic

duyntnet/Einstein-v6-7B-imatrix-GGUF

sourceHugging Faceotherupdated 2y agoView on Hugging Face
0likes482downloads
Model Card

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:

python
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)