1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = 'Shrey2912/cbt-mental-health-chatbot-qwen2.5-1.5b'
4tokenizer = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id)AutoModelForCausalLM with the appropriate AutoModel class.