mgokg commited on
Commit
3f2068f
·
verified ·
1 Parent(s): f47f413

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -94,7 +94,7 @@ if audio_bytes:
94
  response = st.session_state.chat_session.send_message(full_prompt)
95
  response_text = response.candidates[0].content.parts[0].text if response.candidates else "Keine Antwort"
96
  st.session_state.display_history.append(("assistant", response_text))
97
- st.rerun()
98
  except Exception as e:
99
  st.error(f"Audioprocessing fehlgeschlagen: {str(e)}")
100
 
 
94
  response = st.session_state.chat_session.send_message(full_prompt)
95
  response_text = response.candidates[0].content.parts[0].text if response.candidates else "Keine Antwort"
96
  st.session_state.display_history.append(("assistant", response_text))
97
+ #st.rerun()
98
  except Exception as e:
99
  st.error(f"Audioprocessing fehlgeschlagen: {str(e)}")
100