YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.


license: apache-2.0 ---# CyfutureAI Chatbot

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.

πŸ” Key Features

  • Multi-turn dialogue handling
  • Support for business FAQs
  • Context-aware responses
  • Custom knowledgebase support
  • Integration-ready for web, WhatsApp, and IVR systems

🧠 Model Details

  • Architecture: LLM-based chatbot
  • Optimized for: Customer support, product queries, and task assistance
  • Input: Text
  • Output: Text response

πŸ“¦ Example Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "Cyfutureai/cyfutureai-chatbot"

tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)

inp = "Hi, I need help with GPU services."
inputs = tokenizer(inp, return_tensors="pt")

outputs = model.generate(**inputs, max_new_tokens=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support