shukdevdatta123 commited on
Commit
b1af8d0
·
verified ·
1 Parent(s): 5f1bc8d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ class ChatbotManager:
63
  # Add conversation history
64
  for user_msg, assistant_msg in history:
65
  messages.append({"role": "user", "content": user_msg})
66
- messages.append({"role": "assistant", "content": "🤖 " + assistant_msg})
67
 
68
  # Add current user input
69
  messages.append({"role": "user", "content": user_input})
 
63
  # Add conversation history
64
  for user_msg, assistant_msg in history:
65
  messages.append({"role": "user", "content": user_msg})
66
+ messages.append({"role": "assistant", "content": assistant_msg})
67
 
68
  # Add current user input
69
  messages.append({"role": "user", "content": user_input})