Spaces:
Running
Running
File size: 264 Bytes
b10121d |
1 2 3 4 5 6 7 |
- Added a simple chat template that assumes two messages come in: The first one as the system prompt and the second one as the user's real prompt.
```jinja
{{ bos_token }}
{{'USER: ' + messages[0]['content'] + '\n' + messages[1]['content'] + '\nASSISTANT:'}}
```
|