Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
sahil239
/
chatbot-v2
like
0
Transformers
Safetensors
8 datasets
English
chat
chatbot
LoRA
instruction-tuning
conversational
tinyllama
License:
apache-2.0
Model card
Files
Files and versions
xet
Community
Train
Deploy
Use this model
1d392c6
chatbot-v2
/
chat_template.jinja
sahil239
Upload chat_template.jinja with huggingface_hub
1d392c6
verified
about 2 months ago
raw
Copy download link
history
blame
148 Bytes
{%
for
message
in
messages %}
{{ '<|user|>' if message['role'] == 'user' else '<|assistant|>' }}
{{ message['content'] }}
{%
endfor
%}
<|assistant|>