Spaces:
Running
Running
Aditya Bakshi
commited on
add new chat icon
Browse files
app.py
CHANGED
|
@@ -178,7 +178,7 @@ with st.sidebar:
|
|
| 178 |
# New Chat button at the top of sidebar
|
| 179 |
col1, col2, col3 = st.columns([1, 2, 1])
|
| 180 |
with col2:
|
| 181 |
-
if st.button("New Chat
|
| 182 |
reset_chat_history()
|
| 183 |
|
| 184 |
st.markdown("---") # Separator
|
|
|
|
| 178 |
# New Chat button at the top of sidebar
|
| 179 |
col1, col2, col3 = st.columns([1, 2, 1])
|
| 180 |
with col2:
|
| 181 |
+
if st.button("New Chat 💬", help="Start a new conversation", key="new_chat_button"):
|
| 182 |
reset_chat_history()
|
| 183 |
|
| 184 |
st.markdown("---") # Separator
|