Samurai719214 commited on
Commit
3d93a76
·
verified ·
1 Parent(s): e633598

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ def get_conversation_history():
49
  """Displays conversation history."""
50
  if not conversation_history:
51
  return "No conversations started."
52
- return "\n\n".join([f"**User:** {inp}\n**AI:** {out}" for inp, out in conversation_history])
53
 
54
  def clear_conversation():
55
  """Clears the conversation history."""
 
49
  """Displays conversation history."""
50
  if not conversation_history:
51
  return "No conversations started."
52
+ return "\n\n".join([f"**User-** {inp}\n**AI-** {out}" for inp, out in conversation_history])
53
 
54
  def clear_conversation():
55
  """Clears the conversation history."""