mnauf commited on
Commit
4a73f56
·
1 Parent(s): c297a51

disabled run button queue

Browse files
Files changed (2) hide show
  1. __pycache__/sample.cpython-38.pyc +0 -0
  2. app.py +2 -2
__pycache__/sample.cpython-38.pyc CHANGED
Binary files a/__pycache__/sample.cpython-38.pyc and b/__pycache__/sample.cpython-38.pyc differ
 
app.py CHANGED
@@ -44,6 +44,6 @@ with gr.Blocks() as block:
44
  fn=generate_text,
45
  inputs=inputs,
46
  outputs=outputs,
47
- queue=True
48
  )
49
- block.queue(concurrency_count=3).launch(server_name="localhost")
 
44
  fn=generate_text,
45
  inputs=inputs,
46
  outputs=outputs,
47
+ queue=False
48
  )
49
+ block.queue(concurrency_count=3).launch()