Update app.py
Browse files
app.py
CHANGED
@@ -322,15 +322,16 @@ with gr.Blocks(js = js_func) as demo:
|
|
322 |
inputs=None,
|
323 |
outputs=[copy_prompt, copy_neg_prompt, copy_seed, message_output]
|
324 |
)
|
|
|
|
|
|
|
|
|
325 |
download_button.click(
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
],
|
332 |
-
outputs=[download_file, message_output] # Tải file và hiển thị thông báo
|
333 |
-
)
|
334 |
|
335 |
|
336 |
|
|
|
322 |
inputs=None,
|
323 |
outputs=[copy_prompt, copy_neg_prompt, copy_seed, message_output]
|
324 |
)
|
325 |
+
def notify_download():
|
326 |
+
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)
|
327 |
+
|
328 |
+
# Gắn sự kiện click cho nút download
|
329 |
download_button.click(
|
330 |
+
fn=notify_download,
|
331 |
+
inputs=None, # Không cần inputs
|
332 |
+
outputs=message_output # Chỉ hiển thị thông báo
|
333 |
+
)
|
334 |
+
|
|
|
|
|
|
|
335 |
|
336 |
|
337 |
|