Spaces:
Runtime error
Runtime error
fix: forget to add the render
Browse files
app.py
CHANGED
|
@@ -160,10 +160,12 @@ with gr.Blocks(css=CSS) as demo:
|
|
| 160 |
)
|
| 161 |
|
| 162 |
chatbot.like(vote, None, None)
|
| 163 |
-
|
| 164 |
-
|
| 165 |
#output = gr.Textbox(label="What you can expect coming:")
|
| 166 |
textbox.change(fn=evolve_text, inputs=textbox, outputs=textbox.info,
|
| 167 |
show_progress = False, status_tracker = None)
|
| 168 |
|
|
|
|
|
|
|
|
|
|
| 169 |
demo.queue(concurrency_count=100, api_open=False).launch(show_api=False) #, share=True)
|
|
|
|
| 160 |
)
|
| 161 |
|
| 162 |
chatbot.like(vote, None, None)
|
| 163 |
+
|
|
|
|
| 164 |
#output = gr.Textbox(label="What you can expect coming:")
|
| 165 |
textbox.change(fn=evolve_text, inputs=textbox, outputs=textbox.info,
|
| 166 |
show_progress = False, status_tracker = None)
|
| 167 |
|
| 168 |
+
textbox.render()
|
| 169 |
+
chat_interface.render()
|
| 170 |
+
|
| 171 |
demo.queue(concurrency_count=100, api_open=False).launch(show_api=False) #, share=True)
|