Seraph19 commited on
Commit
77f2fd4
·
verified ·
1 Parent(s): 5341a15

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -189,7 +189,9 @@ with demo:
189
  def slow_echo(message, history):
190
  return message
191
 
192
- demo = gr.ChatInterface(slow_echo).queue()
 
 
193
  start_button = gr.Button("Start", elem_id="start_button")
194
  scheduler = BackgroundScheduler()
195
  scheduler.add_job(restart_space, "interval", seconds=1800)
 
189
  def slow_echo(message, history):
190
  return message
191
 
192
+ demo = gr.ChatInterface(slow_echo).queue().launch()
193
+
194
+
195
  start_button = gr.Button("Start", elem_id="start_button")
196
  scheduler = BackgroundScheduler()
197
  scheduler.add_job(restart_space, "interval", seconds=1800)