Update tribunal_2.py
Browse files- tribunal_2.py +3 -3
tribunal_2.py
CHANGED
|
@@ -298,7 +298,7 @@ def main():
|
|
| 298 |
|
| 299 |
with col1:
|
| 300 |
st.markdown("<div class='chat-container'>", unsafe_allow_html=True)
|
| 301 |
-
st.subheader(genparam.BOT_1_NAME)
|
| 302 |
# Display chat history for bot 1
|
| 303 |
for message in st.session_state.chat_history_1:
|
| 304 |
with st.chat_message(message["role"], avatar=genparam.USER_AVATAR if message["role"] == "user" else genparam.BOT_1_AVATAR):
|
|
@@ -329,7 +329,7 @@ def main():
|
|
| 329 |
|
| 330 |
with col2:
|
| 331 |
st.markdown("<div class='chat-container'>", unsafe_allow_html=True)
|
| 332 |
-
st.subheader(genparam.BOT_2_NAME)
|
| 333 |
# Display chat history for bot 2
|
| 334 |
for message in st.session_state.chat_history_2:
|
| 335 |
with st.chat_message(message["role"], avatar=genparam.USER_AVATAR if message["role"] == "user" else genparam.BOT_2_AVATAR):
|
|
@@ -361,7 +361,7 @@ def main():
|
|
| 361 |
|
| 362 |
with col3:
|
| 363 |
st.markdown("<div class='chat-container'>", unsafe_allow_html=True)
|
| 364 |
-
st.subheader(genparam.BOT_3_NAME)
|
| 365 |
# Display chat history for bot 3
|
| 366 |
for message in st.session_state.chat_history_3:
|
| 367 |
with st.chat_message(message["role"], avatar=genparam.USER_AVATAR if message["role"] == "user" else genparam.BOT_3_AVATAR):
|
|
|
|
| 298 |
|
| 299 |
with col1:
|
| 300 |
st.markdown("<div class='chat-container'>", unsafe_allow_html=True)
|
| 301 |
+
st.subheader(f"{genparam.BOT_1_AVATAR} {genparam.BOT_1_NAME}")
|
| 302 |
# Display chat history for bot 1
|
| 303 |
for message in st.session_state.chat_history_1:
|
| 304 |
with st.chat_message(message["role"], avatar=genparam.USER_AVATAR if message["role"] == "user" else genparam.BOT_1_AVATAR):
|
|
|
|
| 329 |
|
| 330 |
with col2:
|
| 331 |
st.markdown("<div class='chat-container'>", unsafe_allow_html=True)
|
| 332 |
+
st.subheader(f"{genparam.BOT_2_AVATAR} {genparam.BOT_2_NAME}")
|
| 333 |
# Display chat history for bot 2
|
| 334 |
for message in st.session_state.chat_history_2:
|
| 335 |
with st.chat_message(message["role"], avatar=genparam.USER_AVATAR if message["role"] == "user" else genparam.BOT_2_AVATAR):
|
|
|
|
| 361 |
|
| 362 |
with col3:
|
| 363 |
st.markdown("<div class='chat-container'>", unsafe_allow_html=True)
|
| 364 |
+
st.subheader(f"{genparam.BOT_3_AVATAR} {genparam.BOT_3_NAME}")
|
| 365 |
# Display chat history for bot 3
|
| 366 |
for message in st.session_state.chat_history_3:
|
| 367 |
with st.chat_message(message["role"], avatar=genparam.USER_AVATAR if message["role"] == "user" else genparam.BOT_3_AVATAR):
|