mnauf
commited on
Commit
·
4a73f56
1
Parent(s):
c297a51
disabled run button queue
Browse files- __pycache__/sample.cpython-38.pyc +0 -0
- 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=
|
48 |
)
|
49 |
-
block.queue(concurrency_count=3).launch(
|
|
|
44 |
fn=generate_text,
|
45 |
inputs=inputs,
|
46 |
outputs=outputs,
|
47 |
+
queue=False
|
48 |
)
|
49 |
+
block.queue(concurrency_count=3).launch()
|