1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "trankhanhnhat19/llama-3.2-3b-instruct-sft"
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)AutoModelForCausalLM with the appropriate AutoModel class.