Update app.py
Browse files
app.py
CHANGED
@@ -230,7 +230,8 @@ with gr.Blocks(css="""
|
|
230 |
hear_button = gr.Button("Hear Response")
|
231 |
audio_output = gr.Audio(label="Bot's Voice", type="filepath", interactive=False)
|
232 |
clear_button = gr.Button("Clear History")
|
233 |
-
|
|
|
234 |
|
235 |
history_state = gr.State(load_history())
|
236 |
|
|
|
230 |
hear_button = gr.Button("Hear Response")
|
231 |
audio_output = gr.Audio(label="Bot's Voice", type="filepath", interactive=False)
|
232 |
clear_button = gr.Button("Clear History")
|
233 |
+
system_message = gr.Textbox(label="System Message", interactive=False)
|
234 |
+
|
235 |
|
236 |
history_state = gr.State(load_history())
|
237 |
|