Spaces:
Running
Running
Update app.py
Browse files
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 |
|