ayush2917 commited on
Commit
c0df4ac
·
verified ·
1 Parent(s): c2ce458

Update backend/app.py

Browse files
Files changed (1) hide show
  1. backend/app.py +0 -1
backend/app.py CHANGED
@@ -26,7 +26,6 @@ def chat():
26
  if firebase_enabled:
27
  save_chat_message(user_input, reply)
28
  return jsonify({'reply': reply})
29
- # Fetch chat history for display
30
  chat_history = get_chat_history() if firebase_enabled else []
31
  return render_template('chat.html', chat_history=chat_history)
32
 
 
26
  if firebase_enabled:
27
  save_chat_message(user_input, reply)
28
  return jsonify({'reply': reply})
 
29
  chat_history = get_chat_history() if firebase_enabled else []
30
  return render_template('chat.html', chat_history=chat_history)
31