We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ce5a7e commit 0ffb603Copy full SHA for 0ffb603
recipes/VideoBots.py
@@ -723,9 +723,9 @@ def render_output(self):
723
gui.rerun()
724
725
messages = [] # chat widget internal mishmash format
726
- input_audio = gui.session_state.get("input_audio", "")
727
- input_images = gui.session_state.get("input_images", [])
728
- input_documents = gui.session_state.get("input_documents", [])
+ input_audio = gui.session_state.get("input_audio") or ""
+ input_images = gui.session_state.get("input_images") or []
+ input_documents = gui.session_state.get("input_documents") or []
729
730
if is_realtime_audio_url(input_audio):
731
entries = gui.session_state.get("final_prompt", []).copy()
0 commit comments