laichaoyi commited on
Commit
ad27445
1 Parent(s): 075ab3a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
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
- fn=save_metadata_to_file,
327
- inputs=[
328
- image_input, prompt_output, negative_prompt_output,
329
- model_output, lora_output, seed_output,
330
- sampler_output, sampler_params_output, other_metadata_output
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