Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
@@ -264,6 +264,7 @@ def main():
|
|
264 |
|
265 |
st.markdown("**Prakhar replied:**")
|
266 |
st.success(latest["ai"])
|
|
|
267 |
|
268 |
# Play AI response audio
|
269 |
if latest["speech"]:
|
@@ -286,7 +287,6 @@ def main():
|
|
286 |
st.divider()
|
287 |
|
288 |
with st.expander("ℹ️ Context", expanded=False):
|
289 |
-
st.markdown("**Prakhar's Context:**")
|
290 |
st.info(st.session_state.context)
|
291 |
|
292 |
# Only keep the clear conversation button
|
|
|
264 |
|
265 |
st.markdown("**Prakhar replied:**")
|
266 |
st.success(latest["ai"])
|
267 |
+
st.session_state.processing = False
|
268 |
|
269 |
# Play AI response audio
|
270 |
if latest["speech"]:
|
|
|
287 |
st.divider()
|
288 |
|
289 |
with st.expander("ℹ️ Context", expanded=False):
|
|
|
290 |
st.info(st.session_state.context)
|
291 |
|
292 |
# Only keep the clear conversation button
|