Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---# CyfutureAI Chatbot
|
| 4 |
+
|
| 5 |
+
CyfutureAI Chatbot is a conversational AI model designed for customer support, lead qualification, and general Q&A. It can be adapted for website chat widgets, WhatsApp bots, voicebots, or enterprise support systems.
|
| 6 |
+
|
| 7 |
+
## 🔍 Key Features
|
| 8 |
+
- Multi-turn dialogue handling
|
| 9 |
+
- Support for business FAQs
|
| 10 |
+
- Context-aware responses
|
| 11 |
+
- Custom knowledgebase support
|
| 12 |
+
- Integration-ready for web, WhatsApp, and IVR systems
|
| 13 |
+
|
| 14 |
+
## 🧠 Model Details
|
| 15 |
+
- Architecture: LLM-based chatbot
|
| 16 |
+
- Optimized for: Customer support, product queries, and task assistance
|
| 17 |
+
- Input: Text
|
| 18 |
+
- Output: Text response
|
| 19 |
+
|
| 20 |
+
## 📦 Example Usage
|
| 21 |
+
|
| 22 |
+
```python
|
| 23 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 24 |
+
|
| 25 |
+
model_name = "Cyfutureai/cyfutureai-chatbot"
|
| 26 |
+
|
| 27 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 28 |
+
model = AutoModelForCausalLM.from_pretrained(model_name)
|
| 29 |
+
|
| 30 |
+
inp = "Hi, I need help with GPU services."
|
| 31 |
+
inputs = tokenizer(inp, return_tensors="pt")
|
| 32 |
+
|
| 33 |
+
outputs = model.generate(**inputs, max_new_tokens=200)
|
| 34 |
+
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
| 35 |
+
|