Spaces:
Runtime error
Runtime error
Commit ·
2aa7e52
1
Parent(s): 3f988b7
Disable queueing for audio additional outputs in Gradio interface
Browse files
app.py
CHANGED
|
@@ -472,7 +472,7 @@ with gr.Blocks(css=custom_css, theme=gr.themes.Soft(primary_hue="orange", second
|
|
| 472 |
audio.on_additional_outputs(
|
| 473 |
lambda history: history,
|
| 474 |
outputs=[conversation_history],
|
| 475 |
-
queue=
|
| 476 |
show_progress="hidden"
|
| 477 |
)
|
| 478 |
|
|
|
|
| 472 |
audio.on_additional_outputs(
|
| 473 |
lambda history: history,
|
| 474 |
outputs=[conversation_history],
|
| 475 |
+
queue=False,
|
| 476 |
show_progress="hidden"
|
| 477 |
)
|
| 478 |
|