Update app.py
Browse files
app.py
CHANGED
|
@@ -60,6 +60,7 @@ def talk(prompt, history):
|
|
| 60 |
# Gradio interface
|
| 61 |
demo = gr.ChatInterface(
|
| 62 |
fn=talk,
|
|
|
|
| 63 |
chatbot=gr.Chatbot(
|
| 64 |
show_label=True,
|
| 65 |
show_share_button=True,
|
|
|
|
| 60 |
# Gradio interface
|
| 61 |
demo = gr.ChatInterface(
|
| 62 |
fn=talk,
|
| 63 |
+
streaming=True, # ✅ Enables streaming from the generator
|
| 64 |
chatbot=gr.Chatbot(
|
| 65 |
show_label=True,
|
| 66 |
show_share_button=True,
|