This commit is contained in:
Hardik Shah 2025-01-16 14:09:59 -08:00
parent fcd1a57429
commit f1faa9c924

View file

@ -1321,7 +1321,7 @@
"def chat_loop():\n",
" conversation_history = []\n",
" while len(questions) > 0:\n",
" user_input = questions.pop()\n",
" user_input = questions.pop(0)\n",
" if user_input.lower() in [\"exit\", \"quit\", \"bye\"]:\n",
" cprint(\"Ending conversation. Goodbye!\", \"yellow\")\n",
" break\n",