Spaces:
Runtime error
Runtime error
fix: can't call the render twice
Browse files
app.py
CHANGED
|
@@ -165,7 +165,7 @@ with gr.Blocks(css=CSS) as demo:
|
|
| 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)
|
|
|
|
| 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)
|