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
| {% 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 %} |