Update app.py
Browse files
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 |
-
|
31 |
-
|
32 |
-
🧠 **CodeBot** (Programmer):
|
33 |
{reply_codebot.content}
|
34 |
|
35 |
-
|
|
|
|
|
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
|