aymnsk commited on
Commit
4c60640
·
verified ·
1 Parent(s): 1749d39

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -27,14 +27,16 @@ def chat_with_bots(user_input):
27
  log_message_to_firestore(reply_codebot.to_dict())
28
  log_message_to_firestore(reply_bugbot.to_dict())
29
 
30
- # Format reply for chat
31
- full_reply = f"""
32
- 🧠 **CodeBot** (Programmer):
33
  {reply_codebot.content}
34
 
35
- 🐞 **BugBot** (Debugger):
 
 
36
  {reply_bugbot.content}
37
  """
 
38
  return full_reply.strip()
39
 
40
  # Gradio UI
 
27
  log_message_to_firestore(reply_codebot.to_dict())
28
  log_message_to_firestore(reply_bugbot.to_dict())
29
 
30
+ full_reply = f"""
31
+ ### 🧠 **CodeBot** (Programmer)
 
32
  {reply_codebot.content}
33
 
34
+ ---
35
+
36
+ ### 🐞 **BugBot** (Debugger)
37
  {reply_bugbot.content}
38
  """
39
+
40
  return full_reply.strip()
41
 
42
  # Gradio UI