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