How to use Hongbin37/CBT-LLM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Hongbin37/CBT-LLM", trust_remote_code=True)
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Hongbin37/CBT-LLM", trust_remote_code=True, dtype="auto")