--- language: en license: mit tags: - text-generation - gpt2 - ai-assistant pipeline_tag: text-generation --- # 🧠 SupportAI1 — Your Smart Support Assistant 🤖 SupportAI is a fine-tuned **GPT-2** model built to assist with customer service and support-related queries. It understands prompts like password resets, account help, or general customer interactions — and responds conversationally. --- ## 🚀 Example Usage (Python) ```python from transformers import pipeline # Load model directly from Hugging Face pipe = pipeline("text-generation", model="marswallet/supportAI1") prompt = "Hello, I forgot my password. Can you help me?" result = pipe(prompt, max_new_tokens=80, do_sample=True) print(result[0]['generated_text'])