seawolf2357 commited on
Commit
ba98e75
·
verified ·
1 Parent(s): 9358af0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -265,12 +265,13 @@ with gr.Blocks(css_paths="app.css") as demo:
265
  outputs=[history]
266
  )
267
 
268
- # 이전 코드는 동일...
269
 
270
  if __name__ == "__main__":
271
- gr.Blocks(css_paths="app.css").queue(default_concurrency_limit=20).launch(
 
272
  server_name="0.0.0.0",
273
  server_port=7860,
274
  share=False,
275
- show_error=True
 
276
  )
 
265
  outputs=[history]
266
  )
267
 
 
268
 
269
  if __name__ == "__main__":
270
+ demo = gr.Blocks(css_paths="app.css")
271
+ demo.launch(
272
  server_name="0.0.0.0",
273
  server_port=7860,
274
  share=False,
275
+ show_error=True,
276
+ ssr_mode=False
277
  )