feat(chatbot): add AI accuracy warning and disclaimer to initial greeting across Web, Telegram, and Discord
Some checks failed
Deploy RIT Freshers Hub to VPS / Deploy to Live VPS (push) Has been cancelled

This commit is contained in:
Shanmuga Krishnan S M
2026-08-04 13:18:11 +05:30
parent d76e956b07
commit 04c4ed907c
2 changed files with 2 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ const INITIAL_MESSAGES: ChatMessage[] = [
{ {
id: '1', id: '1',
role: 'assistant', role: 'assistant',
content: "👋 Hi there! I'm your **RIT Assistant**. I have comprehensive knowledge about Rajalakshmi Institute of Technology — from admissions to campus facilities, bus routes, and academic details.\n\nHow can I help you today?", content: "👋 Hi there! I'm your **RIT Chatbot**.\n\n⚠ *Please note: Answers generated by AI may occasionally be inaccurate or wrong. Please cross-reference critical academic, exam, or administrative details with official campus sources.*\n\nHow can I help you today?",
timestamp: new Date().toISOString(), timestamp: new Date().toISOString(),
}, },
]; ];

View File

@@ -579,6 +579,7 @@ def telegram_polling_thread():
if text == "/start": if text == "/start":
welcome_text = ( welcome_text = (
f"👋 *Welcome to the RIT Chatbot 24/7!*\n\n" f"👋 *Welcome to the RIT Chatbot 24/7!*\n\n"
f"⚠️ *Please note: Answers generated by AI may occasionally be inaccurate or wrong. Always verify critical academic or administrative details with official campus sources.*\n\n"
f"I can help you answer any questions about RIT Chennai — courses, hostels, transport, sports, and more.\n\n" f"I can help you answer any questions about RIT Chennai — courses, hostels, transport, sports, and more.\n\n"
f"🚀 *Developer Collaboration:* Type `/collab` to post your project idea!\n" f"🚀 *Developer Collaboration:* Type `/collab` to post your project idea!\n"
f"🗑️ *Remove Request:* Type `/remove` to cancel your active requests.\n\n" f"🗑️ *Remove Request:* Type `/remove` to cancel your active requests.\n\n"