Transformers How to use KangarooGroup/kangaroo with Transformers:
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("KangarooGroup/kangaroo", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("KangarooGroup/kangaroo", trust_remote_code=True)