Spaces:
Running
Running
flavioschneider
commited on
Commit
•
dce5f84
1
Parent(s):
4e1abd8
feat: update concurrency and default prompt
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ with gr.Blocks() as block:
|
|
57 |
input_text = gr.Textbox(
|
58 |
label="Input Text (250 characters max)",
|
59 |
lines=2,
|
60 |
-
value="Hello! 你好! Hola! नमस्ते!
|
61 |
elem_id="input_text"
|
62 |
)
|
63 |
|
@@ -90,4 +90,4 @@ with gr.Blocks() as block:
|
|
90 |
queue=True
|
91 |
)
|
92 |
|
93 |
-
block.queue(concurrency_count=
|
|
|
57 |
input_text = gr.Textbox(
|
58 |
label="Input Text (250 characters max)",
|
59 |
lines=2,
|
60 |
+
value="Hello! 你好! Hola! नमस्ते! Bonjour! こんにちは! مرحبا! 안녕하세요! Ciao! Cześć! Привіт! Γειά σας! Здравей! வணக்கம்!",
|
61 |
elem_id="input_text"
|
62 |
)
|
63 |
|
|
|
90 |
queue=True
|
91 |
)
|
92 |
|
93 |
+
block.queue(concurrency_count=5).launch(debug=True)
|