bitext/Bitext-customer-support-llm-chatbot-training-dataset
Viewer • Updated • 26.9k • 6.17k • 186
This repository contains a fully merged, 4-bit quantized model built by integrating a customer support adapter into the base Llama-3.2-1B-Instruct model.
This model behaves like any other Hugging Face model. For example:
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("your_username/Ansah-E1", load_in_4bit=True)
tokenizer = AutoTokenizer.from_pretrained("your_username/Ansah-E1")
prompt = "I received a damaged product and want to return it. What's the process?"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Base model
meta-llama/Llama-3.2-1B-Instruct