supportAI1 / README.md
marswallet's picture
Create README.md
503af29 verified
metadata
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)

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'])