Update app.py
Browse files
app.py
CHANGED
@@ -306,7 +306,8 @@ with gr.Blocks(js = js_func) as demo:
|
|
306 |
sampler_output = gr.Textbox(label="Phương pháp lấy mẫu")
|
307 |
sampler_params_output = gr.Textbox(label="Thông số lấy mẫu")
|
308 |
other_metadata_output = gr.Textbox(label="Thông tin khác", lines=10)
|
309 |
-
|
|
|
310 |
read_button.click(
|
311 |
fn=check_image_size,
|
312 |
inputs=image_input,
|
@@ -333,14 +334,14 @@ with gr.Blocks(js = js_func) as demo:
|
|
333 |
outputs=[copy_prompt, copy_neg_prompt, copy_seed, message_output]
|
334 |
)
|
335 |
download_button.click(
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
|
345 |
|
346 |
|
|
|
306 |
sampler_output = gr.Textbox(label="Phương pháp lấy mẫu")
|
307 |
sampler_params_output = gr.Textbox(label="Thông số lấy mẫu")
|
308 |
other_metadata_output = gr.Textbox(label="Thông tin khác", lines=10)
|
309 |
+
|
310 |
+
download_file = gr.File(label="Tải file đã tạo", visible=False)
|
311 |
read_button.click(
|
312 |
fn=check_image_size,
|
313 |
inputs=image_input,
|
|
|
334 |
outputs=[copy_prompt, copy_neg_prompt, copy_seed, message_output]
|
335 |
)
|
336 |
download_button.click(
|
337 |
+
fn=save_metadata_to_file,
|
338 |
+
inputs=[
|
339 |
+
image_input, prompt_output, negative_prompt_output,
|
340 |
+
model_output, lora_output, seed_output,
|
341 |
+
sampler_output, sampler_params_output, other_metadata_output
|
342 |
+
],
|
343 |
+
outputs=[download_file] # Tải file trực tiếp về máy
|
344 |
+
)
|
345 |
|
346 |
|
347 |
|