Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -70,7 +70,7 @@ with gr.Blocks(css=css) as Animagine:
|
|
70 |
with gr.Column(elem_id="prompt-container"):
|
71 |
text_prompt = gr.Textbox(label="Prompt", placeholder="Описание изображения", lines=1, elem_id="prompt-text-input")
|
72 |
negative_prompt = gr.Textbox(label="Negative Prompt", placeholder="Чего не должно быть на изображении", value="[deformed | disfigured], poorly drawn, [bad : wrong] anatomy, [extra | missing | floating | disconnected] limb, (mutated hands and fingers), blurry", lines=1, elem_id="negative-prompt-text-input")
|
73 |
-
text_button = gr.Button("Генерировать", variant='primary', elem_id="gen-button")
|
74 |
image_output = gr.Image(type="pil", label="Сгенерированое изображение", elem_id="gallery")
|
75 |
text_button.click(query, inputs=[text_prompt, negative_prompt], outputs=image_output)
|
76 |
-
Animagine.launch(
|
|
|
70 |
with gr.Column(elem_id="prompt-container"):
|
71 |
text_prompt = gr.Textbox(label="Prompt", placeholder="Описание изображения", lines=1, elem_id="prompt-text-input")
|
72 |
negative_prompt = gr.Textbox(label="Negative Prompt", placeholder="Чего не должно быть на изображении", value="[deformed | disfigured], poorly drawn, [bad : wrong] anatomy, [extra | missing | floating | disconnected] limb, (mutated hands and fingers), blurry", lines=1, elem_id="negative-prompt-text-input")
|
73 |
+
text_button = gr.Button("Генерировать", variant='primary', elem_id="gen-button", concurrency_limit=100)
|
74 |
image_output = gr.Image(type="pil", label="Сгенерированое изображение", elem_id="gallery")
|
75 |
text_button.click(query, inputs=[text_prompt, negative_prompt], outputs=image_output)
|
76 |
+
Animagine.launch(show_api=False)
|