Since the model was continuously pre-trained from Llama 3.1 8B Instruct, it can be used as a chat model.
python
1import torch
2from transformers import pipeline
34model_id ="NYTK/PULI-LlumiX-Llama-3.1"5pipe = pipeline(6"text-generation",7 model=model_id,8 torch_dtype=torch.bfloat16,9 device_map="auto",10)11messages =[12{"role":"system","content":"You are a helpful assistant"},13{"role":"user","content":"Mit gondolsz a nyelvtechnológiáról?"},14]15outputs = pipe(16 messages,17 max_new_tokens=256,18)19print(outputs[0]["generated_text"][-1])
Citation
If you use this model, please cite the following paper:
@article{chatpuli,
title={ChatPULI: Enhancement to the first Hungarian conversational model},
author={Yang, Zijian Győző and Bánfi, Ágnes and Dodé, Réka and Ferenczi, Gergő and Földesi, Flóra and Hatvani, Péter and Héja, Enikő and Lengyel, Mariann and Madarász, Gábor and Osváth, Mátyás and Sárossy, Bence and Varga, Kristóf and Váradi, Tamás and Prószéky, Gábor and Ligeti-Nagy, Noémi},
journal={Annales Mathematicae et Informaticae},
doi = {https://doi.org/10.33039/ami.2025.10.010},
url = { https://ami.uni-eszterhazy.hu},
year={2025},
volume={61},
pages={261–-274}
}