Spaces:
Running
Running
File size: 172 Bytes
b10121d |
1 2 3 4 5 6 7 8 |
- Added `chat_template` that just concatenates the system and user prompts.
```jinja
{%- for message in messages -%}
{{ message['content'] + ' ' }}
{%- endfor -%}
```
|