Transformers How to use GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot")
model = AutoModelForCausalLM.from_pretrained("GigoFof/llama-3.2-3b-lv6-CSP-RU-ChatBot")