Qwen-Chatbot is a fine-tuned large language model designed for educational conversational use cases. The model was trained to provide structured, clear, and context-aware responses, with emphasis on explanation quality and instructional dialogue rather than open-ended creativity.
This model is intended for academic research, educational chatbots, and experimentation with conversational AI systems. It is not designed for deployment in production or safety-critical environments.
1from transformers import pipeline
2
3chatbot = pipeline("text-generation", model="ushasree2001/qwen_chatbot")
4chatbot("How to find the factors of a number?")