Update app.py
Browse files
app.py
CHANGED
@@ -310,6 +310,9 @@ with gr.Blocks(js = js_func) as demo:
|
|
310 |
inputs=image_input,
|
311 |
outputs=[prompt_output, negative_prompt_output, model_output, lora_output, seed_output, sampler_output, sampler_params_output, other_metadata_output]
|
312 |
)
|
|
|
|
|
|
|
313 |
copy_button.click(
|
314 |
fn=notify_download,
|
315 |
inputs=None,
|
@@ -324,8 +327,7 @@ with gr.Blocks(js = js_func) as demo:
|
|
324 |
outputs=message_output,
|
325 |
show_progress=False
|
326 |
)
|
327 |
-
|
328 |
-
return gr.Info("Không hỗ trợ tính năng này trong bản demo. Vui lòng liên hệ tác giả để biết chi tiết!", duration=3)
|
329 |
|
330 |
# Gắn sự kiện click cho nút download
|
331 |
download_button.click(
|
|
|
310 |
inputs=image_input,
|
311 |
outputs=[prompt_output, negative_prompt_output, model_output, lora_output, seed_output, sampler_output, sampler_params_output, other_metadata_output]
|
312 |
)
|
313 |
+
def notify_download():
|
314 |
+
return gr.Info("Không hỗ trợ tính năng này trong bản demo. Vui lòng liên hệ tác giả để biết chi tiết!", duration=3)
|
315 |
+
|
316 |
copy_button.click(
|
317 |
fn=notify_download,
|
318 |
inputs=None,
|
|
|
327 |
outputs=message_output,
|
328 |
show_progress=False
|
329 |
)
|
330 |
+
|
|
|
331 |
|
332 |
# Gắn sự kiện click cho nút download
|
333 |
download_button.click(
|