Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tjtanaa
/
chat-template-generation
like
0
Runtime error
App
Files
Files
Community
dcd4eae
chat-template-generation
/
templates
/
chat-ml.jinja2
tjtanaa
init streamlit chat-template ui
7a664fd
about 1 year ago
raw
Copy download link
history
blame
Safe
129 Bytes
{%
for
message
in
messages
%}
{{
'<|im_start|>'
+ message[
'role'
] +
'\n'
+ message[
'content'
] +
'<|im_end|>'
+
'\n'
}}
{%
endfor
%}