Text Generation
PEFT
Safetensors
English
phi3
project-management
communication
lora
phi-3.5
conversational
custom_code
Instructions to use snavazio/pmcommunicator with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use snavazio/pmcommunicator with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
File size: 430 Bytes
6b32f93 | 1 2 3 4 5 6 7 8 | {% for message in messages %}{% if message['role'] == 'system' and message['content'] %}{{'<|system|>
' + message['content'] + '<|end|>
'}}{% elif message['role'] == 'user' %}{{'<|user|>
' + message['content'] + '<|end|>
'}}{% elif message['role'] == 'assistant' %}{{'<|assistant|>
' + message['content'] + '<|end|>
'}}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '<|assistant|>
' }}{% else %}{{ eos_token }}{% endif %} |