chaojiemao commited on
Commit
8d74895
·
verified ·
1 Parent(s): 87044e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +79 -72
app.py CHANGED
@@ -12,12 +12,12 @@ import string
12
  import subprocess
13
  import threading
14
  import spaces
 
15
  subprocess.run("rm -rf /data-nvme/zerogpu-offload/*", env={}, shell=True)
16
  subprocess.run(shlex.split('pip install flash-attn --no-build-isolation'),
17
  env=os.environ | {'FLASH_ATTENTION_SKIP_CUDA_BUILD': "TRUE"})
18
  subprocess.run(shlex.split('pip install scepter'))
19
 
20
-
21
  import cv2
22
  import gradio as gr
23
  import numpy as np
@@ -36,6 +36,7 @@ from importlib.metadata import version
36
  from example import get_examples
37
  from utils import load_image
38
  from huggingface_hub import login
 
39
  login(token=os.environ.get("HF_TOKEN", ""))
40
 
41
  csv.field_size_limit(sys.maxsize)
@@ -89,7 +90,7 @@ class ChatBotUI(object):
89
  subprocess.run(shlex.split(f'rm -rf {local_folder}/transformer'))
90
  subprocess.run(shlex.split(f'rm -rf {local_folder}/vae'))
91
  subprocess.run(shlex.split(f'rm -rf {local_folder}/flux1-dev.safetensors'))
92
-
93
  assert len(self.model_choices) > 0
94
  if self.default_model_name == "": self.default_model_name = list(self.model_choices.keys())[0]
95
  self.model_name = self.default_model_name
@@ -149,39 +150,39 @@ class ChatBotUI(object):
149
  },
150
  {
151
  'role':
152
- 'user',
153
  'content':
154
- 'Create an imaginative video descriptive caption or modify an earlier caption for the user input : "a girl is on the beach"',
155
  },
156
  {
157
  'role':
158
- 'assistant',
159
  'content':
160
- "A radiant woman stands on a deserted beach, arms outstretched, wearing a beige trench coat, white blouse, light blue jeans, and chic boots, against a backdrop of soft sky and sea. Moments later, she is seen mid-twirl, arms exuberant, with the lighting suggesting dawn or dusk. Then, she runs along the beach, her attire complemented by an off-white scarf and black ankle boots, the tranquil sea behind her. Finally, she holds a paper airplane, her pose reflecting joy and freedom, with the ocean's gentle waves and the sky's soft pastel hues enhancing the serene ambiance.",
161
  },
162
  {
163
  'role':
164
- 'user',
165
  'content':
166
- 'Create an imaginative video descriptive caption or modify an earlier caption for the user input : "A man jogging on a football field"',
167
  },
168
  {
169
  'role':
170
- 'assistant',
171
  'content':
172
- "A determined man in athletic attire, including a blue long-sleeve shirt, black shorts, and blue socks, jogs around a snow-covered soccer field, showcasing his solitary exercise in a quiet, overcast setting. His long dreadlocks, focused expression, and the serene winter backdrop highlight his dedication to fitness. As he moves, his attire, consisting of a blue sports sweatshirt, black athletic pants, gloves, and sneakers, grips the snowy ground. He is seen running past a chain-link fence enclosing the playground area, with a basketball hoop and children's slide, suggesting a moment of solitary exercise amidst the empty field.",
173
  },
174
  {
175
  'role':
176
- 'user',
177
  'content':
178
- 'Create an imaginative video descriptive caption or modify an earlier caption for the user input : " A woman is dancing, HD footage, close-up"',
179
  },
180
  {
181
  'role':
182
- 'assistant',
183
  'content':
184
- 'A young woman with her hair in an updo and wearing a teal hoodie stands against a light backdrop, initially looking over her shoulder with a contemplative expression. She then confidently makes a subtle dance move, suggesting rhythm and movement. Next, she appears poised and focused, looking directly at the camera. Her expression shifts to one of introspection as she gazes downward slightly. Finally, she dances with confidence, her left hand over her heart, symbolizing a poignant moment, all while dressed in the same teal hoodie against a plain, light-colored background.',
185
  },
186
  ]
187
 
@@ -348,7 +349,6 @@ class ChatBotUI(object):
348
  show_download_button=True,
349
  elem_id='image_viewer')
350
 
351
-
352
  with gr.Accordion(label='Setting', open=False):
353
  with gr.Row():
354
  self.model_name_dd = gr.Dropdown(
@@ -374,7 +374,6 @@ class ChatBotUI(object):
374
  label='Refiner Prompt',
375
  container=False)
376
 
377
-
378
  with gr.Row():
379
  with gr.Column(scale=8, min_width=500):
380
  with gr.Row():
@@ -395,10 +394,11 @@ class ChatBotUI(object):
395
  visible=self.pipe.input.get("guide_rescale", None) is not None,
396
  label='Rescale')
397
  self.refiner_scale = gr.Slider(minimum=-0.1,
398
- maximum=1.0,
399
- value=self.pipe.input.get("refiner_scale", -1),
400
- visible=self.pipe.input.get("refiner_scale", None) is not None,
401
- label='Refiner Scale')
 
402
  self.seed = gr.Slider(minimum=-1,
403
  maximum=10000000,
404
  value=-1,
@@ -487,7 +487,7 @@ class ChatBotUI(object):
487
  show_progress=False):
488
  with gr.Column(scale=1, min_width=100, visible=False) as self.upload_panel:
489
  self.upload_btn = gr.Button(value=upload_sty +
490
- ' Upload',
491
  variant='secondary')
492
  with gr.Column(scale=5, min_width=500):
493
  self.text = gr.Textbox(
@@ -499,7 +499,7 @@ class ChatBotUI(object):
499
  variant='primary')
500
  with gr.Column(scale=1, min_width=100):
501
  self.retry_btn = gr.Button(value=refresh_sty +
502
- ' Retry',
503
  variant='secondary')
504
  with gr.Column(scale=1, min_width=100):
505
  self.mode_checkbox = gr.Checkbox(
@@ -508,7 +508,7 @@ class ChatBotUI(object):
508
  with gr.Column(scale=(1 if self.enable_i2v else 0),
509
  min_width=0):
510
  self.video_gen_btn = gr.Button(value=video_sty +
511
- ' Gen Video',
512
  variant='secondary',
513
  visible=self.enable_i2v)
514
  with gr.Column(scale=(1 if self.enable_i2v else 0),
@@ -530,7 +530,7 @@ class ChatBotUI(object):
530
  def set_callbacks(self, *args, **kwargs):
531
 
532
  ########################################
533
- #@spaces.GPU(duration=60)
534
  def change_model(model_name):
535
  if model_name not in self.model_choices:
536
  gr.Info('The provided model name is not a valid choice!')
@@ -547,14 +547,14 @@ class ChatBotUI(object):
547
 
548
  return (model_name, gr.update(), gr.update(),
549
  gr.Slider(
550
- value=self.pipe.input.get("sample_steps", 20),
551
- visible=self.pipe.input.get("sample_steps", None) is not None),
552
  gr.Slider(
553
  value=self.pipe.input.get("guide_scale", 4.5),
554
  visible=self.pipe.input.get("guide_scale", None) is not None),
555
  gr.Slider(
556
- value=self.pipe.input.get("guide_rescale", 0.5),
557
- visible=self.pipe.input.get("guide_rescale", None) is not None),
558
  gr.Slider(
559
  value=self.pipe.input.get("output_height", 1024),
560
  visible=self.pipe.input.get("output_height", None) is not None),
@@ -565,9 +565,9 @@ class ChatBotUI(object):
565
  value=self.pipe.input.get("refiner_prompt", ""),
566
  visible=self.pipe.input.get("refiner_prompt", None) is not None),
567
  gr.Slider(
568
- value=self.pipe.input.get("refiner_scale", -1),
569
- visible=self.pipe.input.get("refiner_scale", None) is not None
570
- ),
571
  gr.Checkbox(
572
  value=self.pipe.input.get("use_ace", True),
573
  visible=self.pipe.input.get("use_ace", None) is not None
@@ -584,7 +584,6 @@ class ChatBotUI(object):
584
  self.output_width, self.refiner_prompt, self.refiner_scale,
585
  self.use_ace])
586
 
587
-
588
  def mode_change(mode_check):
589
  if mode_check:
590
  # ChatBot
@@ -606,12 +605,12 @@ class ChatBotUI(object):
606
  gr.Column(visible=False),
607
  gr.Markdown(value=self.legacy_inst)
608
  )
 
609
  self.mode_checkbox.change(mode_change, inputs=[self.mode_checkbox],
610
  outputs=[self.legacy_group, self.chat_group,
611
  self.chat_btn, self.ui_mode,
612
  self.upload_panel, self.instruction])
613
 
614
-
615
  ########################################
616
  def generate_gallery(text, images):
617
  if text.endswith(' '):
@@ -689,9 +688,9 @@ class ChatBotUI(object):
689
  messages = copy.deepcopy(self.enhance_ctx)
690
  messages.append({
691
  'role':
692
- 'user',
693
  'content':
694
- f'Create an imaginative video descriptive caption or modify an earlier caption in ENGLISH for the user input: "{prompt}"',
695
  })
696
  lock.acquire()
697
  outputs = self.enhancer(
@@ -742,31 +741,31 @@ class ChatBotUI(object):
742
  ########################################
743
  @spaces.GPU(duration=120)
744
  def run_chat(
745
- message,
746
- legacy_image,
747
- ui_mode,
748
- use_ace,
749
- extend_prompt,
750
- history,
751
- images,
752
- use_history,
753
- history_result,
754
- negative_prompt,
755
- cfg_scale,
756
- rescale,
757
- refiner_prompt,
758
- refiner_scale,
759
- step,
760
- seed,
761
- output_h,
762
- output_w,
763
- video_auto,
764
- video_steps,
765
- video_frames,
766
- video_cfg_scale,
767
- video_fps,
768
- video_seed,
769
- progress=gr.Progress(track_tqdm=True)):
770
  legacy_img_ids = []
771
  if ui_mode == 'legacy':
772
  if legacy_image is not None:
@@ -797,8 +796,12 @@ class ChatBotUI(object):
797
  )
798
  continue
799
  placeholder = '{image}' if i == 0 else '{' + f'image{i}' + '}'
800
- new_message = re.sub(f'@{img_id}', placeholder,
801
- new_message)
 
 
 
 
802
  img_meta = images[img_id]
803
  img_path = img_meta['image']
804
  img_mask = img_meta['mask']
@@ -833,13 +836,13 @@ class ChatBotUI(object):
833
  mask=edit_image_mask,
834
  task=edit_task,
835
  prompt=[new_message] *
836
- len(edit_image) if edit_image is not None else [new_message],
837
  negative_prompt=[negative_prompt] * len(edit_image)
838
  if edit_image is not None else [negative_prompt],
839
  history_io=history_io,
840
  output_height=output_h,
841
  output_width=output_w,
842
- sampler='ddim',
843
  sample_steps=step,
844
  guide_scale=cfg_scale,
845
  guide_rescale=rescale,
@@ -910,7 +913,7 @@ class ChatBotUI(object):
910
  device='cuda').manual_seed(video_seed)
911
  pixel_values = load_image(img.convert('RGB'),
912
  max_num=self.llm_max_num).to(
913
- torch.bfloat16).cuda()
914
  prompt = self.captioner.chat(self.llm_tokenizer, pixel_values,
915
  self.llm_prompt,
916
  self.llm_generation_config)
@@ -921,9 +924,9 @@ class ChatBotUI(object):
921
  messages = copy.deepcopy(self.enhance_ctx)
922
  messages.append({
923
  'role':
924
- 'user',
925
  'content':
926
- f'Create an imaginative video descriptive caption or modify an earlier caption in ENGLISH for the user input: "{prompt}"',
927
  })
928
  lock.acquire()
929
  outputs = self.enhancer(
@@ -958,7 +961,7 @@ class ChatBotUI(object):
958
  return (history, images, gr.Image(value=save_path),
959
  history_result, self.get_history(
960
  history), gr.update(), gr.update(
961
- visible=False), retry_msg)
962
 
963
  chat_inputs = [
964
  self.legacy_image_uploader, self.ui_mode, self.use_ace,
@@ -1008,9 +1011,13 @@ class ChatBotUI(object):
1008
  w = int(w / ratio)
1009
  img = img.resize((w, h))
1010
  edit_image.append(img)
 
 
1011
  edit_image_mask.append(
1012
  img_mask if img_mask is not None else None)
1013
  edit_task.append(task)
 
 
1014
  if ref1 is not None:
1015
  edit_image.append(ref1)
1016
  edit_image_mask.append(None)
@@ -1050,7 +1057,7 @@ class ChatBotUI(object):
1050
  img_id = get_md5(img_b64)[:12]
1051
  save_path = os.path.join(self.cache_dir, f'{img_id}.png')
1052
  img.convert('RGB').save(save_path)
1053
-
1054
  return self.get_history(history), gr.update(value=''), gr.update(
1055
  visible=False), gr.update(value=save_path), gr.update(value=-1)
1056
 
@@ -1082,6 +1089,7 @@ class ChatBotUI(object):
1082
  examples_per_page=4,
1083
  cache_examples=False,
1084
  run_on_click=True)
 
1085
  ########################################
1086
  def upload_image():
1087
  return (gr.update(visible=True,
@@ -1172,7 +1180,7 @@ class ChatBotUI(object):
1172
  image, history, images)
1173
  return gr.update(visible=False), gr.update(
1174
  visible=True), gr.update(
1175
- value=self.get_history(history)), history, images
1176
 
1177
  self.sub_btn_1.click(
1178
  submit_upload_image,
@@ -1188,7 +1196,7 @@ class ChatBotUI(object):
1188
  imagemask, mask_type, history, images)
1189
  return gr.update(visible=False), gr.update(
1190
  visible=True), gr.update(
1191
- value=self.get_history(history)), history, images
1192
 
1193
  self.sub_btn_2.click(submit_edit_image,
1194
  inputs=[
@@ -1404,7 +1412,6 @@ class ChatBotUI(object):
1404
  return history, images, img_id
1405
 
1406
 
1407
-
1408
  if __name__ == '__main__':
1409
  cfg = "config/chatbot_ui.yaml"
1410
  with gr.Blocks() as demo:
 
12
  import subprocess
13
  import threading
14
  import spaces
15
+
16
  subprocess.run("rm -rf /data-nvme/zerogpu-offload/*", env={}, shell=True)
17
  subprocess.run(shlex.split('pip install flash-attn --no-build-isolation'),
18
  env=os.environ | {'FLASH_ATTENTION_SKIP_CUDA_BUILD': "TRUE"})
19
  subprocess.run(shlex.split('pip install scepter'))
20
 
 
21
  import cv2
22
  import gradio as gr
23
  import numpy as np
 
36
  from example import get_examples
37
  from utils import load_image
38
  from huggingface_hub import login
39
+
40
  login(token=os.environ.get("HF_TOKEN", ""))
41
 
42
  csv.field_size_limit(sys.maxsize)
 
90
  subprocess.run(shlex.split(f'rm -rf {local_folder}/transformer'))
91
  subprocess.run(shlex.split(f'rm -rf {local_folder}/vae'))
92
  subprocess.run(shlex.split(f'rm -rf {local_folder}/flux1-dev.safetensors'))
93
+
94
  assert len(self.model_choices) > 0
95
  if self.default_model_name == "": self.default_model_name = list(self.model_choices.keys())[0]
96
  self.model_name = self.default_model_name
 
150
  },
151
  {
152
  'role':
153
+ 'user',
154
  'content':
155
+ 'Create an imaginative video descriptive caption or modify an earlier caption for the user input : "a girl is on the beach"',
156
  },
157
  {
158
  'role':
159
+ 'assistant',
160
  'content':
161
+ "A radiant woman stands on a deserted beach, arms outstretched, wearing a beige trench coat, white blouse, light blue jeans, and chic boots, against a backdrop of soft sky and sea. Moments later, she is seen mid-twirl, arms exuberant, with the lighting suggesting dawn or dusk. Then, she runs along the beach, her attire complemented by an off-white scarf and black ankle boots, the tranquil sea behind her. Finally, she holds a paper airplane, her pose reflecting joy and freedom, with the ocean's gentle waves and the sky's soft pastel hues enhancing the serene ambiance.",
162
  },
163
  {
164
  'role':
165
+ 'user',
166
  'content':
167
+ 'Create an imaginative video descriptive caption or modify an earlier caption for the user input : "A man jogging on a football field"',
168
  },
169
  {
170
  'role':
171
+ 'assistant',
172
  'content':
173
+ "A determined man in athletic attire, including a blue long-sleeve shirt, black shorts, and blue socks, jogs around a snow-covered soccer field, showcasing his solitary exercise in a quiet, overcast setting. His long dreadlocks, focused expression, and the serene winter backdrop highlight his dedication to fitness. As he moves, his attire, consisting of a blue sports sweatshirt, black athletic pants, gloves, and sneakers, grips the snowy ground. He is seen running past a chain-link fence enclosing the playground area, with a basketball hoop and children's slide, suggesting a moment of solitary exercise amidst the empty field.",
174
  },
175
  {
176
  'role':
177
+ 'user',
178
  'content':
179
+ 'Create an imaginative video descriptive caption or modify an earlier caption for the user input : " A woman is dancing, HD footage, close-up"',
180
  },
181
  {
182
  'role':
183
+ 'assistant',
184
  'content':
185
+ 'A young woman with her hair in an updo and wearing a teal hoodie stands against a light backdrop, initially looking over her shoulder with a contemplative expression. She then confidently makes a subtle dance move, suggesting rhythm and movement. Next, she appears poised and focused, looking directly at the camera. Her expression shifts to one of introspection as she gazes downward slightly. Finally, she dances with confidence, her left hand over her heart, symbolizing a poignant moment, all while dressed in the same teal hoodie against a plain, light-colored background.',
186
  },
187
  ]
188
 
 
349
  show_download_button=True,
350
  elem_id='image_viewer')
351
 
 
352
  with gr.Accordion(label='Setting', open=False):
353
  with gr.Row():
354
  self.model_name_dd = gr.Dropdown(
 
374
  label='Refiner Prompt',
375
  container=False)
376
 
 
377
  with gr.Row():
378
  with gr.Column(scale=8, min_width=500):
379
  with gr.Row():
 
394
  visible=self.pipe.input.get("guide_rescale", None) is not None,
395
  label='Rescale')
396
  self.refiner_scale = gr.Slider(minimum=-0.1,
397
+ maximum=1.0,
398
+ value=self.pipe.input.get("refiner_scale", -1),
399
+ visible=self.pipe.input.get("refiner_scale",
400
+ None) is not None,
401
+ label='Refiner Scale')
402
  self.seed = gr.Slider(minimum=-1,
403
  maximum=10000000,
404
  value=-1,
 
487
  show_progress=False):
488
  with gr.Column(scale=1, min_width=100, visible=False) as self.upload_panel:
489
  self.upload_btn = gr.Button(value=upload_sty +
490
+ ' Upload',
491
  variant='secondary')
492
  with gr.Column(scale=5, min_width=500):
493
  self.text = gr.Textbox(
 
499
  variant='primary')
500
  with gr.Column(scale=1, min_width=100):
501
  self.retry_btn = gr.Button(value=refresh_sty +
502
+ ' Retry',
503
  variant='secondary')
504
  with gr.Column(scale=1, min_width=100):
505
  self.mode_checkbox = gr.Checkbox(
 
508
  with gr.Column(scale=(1 if self.enable_i2v else 0),
509
  min_width=0):
510
  self.video_gen_btn = gr.Button(value=video_sty +
511
+ ' Gen Video',
512
  variant='secondary',
513
  visible=self.enable_i2v)
514
  with gr.Column(scale=(1 if self.enable_i2v else 0),
 
530
  def set_callbacks(self, *args, **kwargs):
531
 
532
  ########################################
533
+ # @spaces.GPU(duration=60)
534
  def change_model(model_name):
535
  if model_name not in self.model_choices:
536
  gr.Info('The provided model name is not a valid choice!')
 
547
 
548
  return (model_name, gr.update(), gr.update(),
549
  gr.Slider(
550
+ value=self.pipe.input.get("sample_steps", 20),
551
+ visible=self.pipe.input.get("sample_steps", None) is not None),
552
  gr.Slider(
553
  value=self.pipe.input.get("guide_scale", 4.5),
554
  visible=self.pipe.input.get("guide_scale", None) is not None),
555
  gr.Slider(
556
+ value=self.pipe.input.get("guide_rescale", 0.5),
557
+ visible=self.pipe.input.get("guide_rescale", None) is not None),
558
  gr.Slider(
559
  value=self.pipe.input.get("output_height", 1024),
560
  visible=self.pipe.input.get("output_height", None) is not None),
 
565
  value=self.pipe.input.get("refiner_prompt", ""),
566
  visible=self.pipe.input.get("refiner_prompt", None) is not None),
567
  gr.Slider(
568
+ value=self.pipe.input.get("refiner_scale", -1),
569
+ visible=self.pipe.input.get("refiner_scale", None) is not None
570
+ ),
571
  gr.Checkbox(
572
  value=self.pipe.input.get("use_ace", True),
573
  visible=self.pipe.input.get("use_ace", None) is not None
 
584
  self.output_width, self.refiner_prompt, self.refiner_scale,
585
  self.use_ace])
586
 
 
587
  def mode_change(mode_check):
588
  if mode_check:
589
  # ChatBot
 
605
  gr.Column(visible=False),
606
  gr.Markdown(value=self.legacy_inst)
607
  )
608
+
609
  self.mode_checkbox.change(mode_change, inputs=[self.mode_checkbox],
610
  outputs=[self.legacy_group, self.chat_group,
611
  self.chat_btn, self.ui_mode,
612
  self.upload_panel, self.instruction])
613
 
 
614
  ########################################
615
  def generate_gallery(text, images):
616
  if text.endswith(' '):
 
688
  messages = copy.deepcopy(self.enhance_ctx)
689
  messages.append({
690
  'role':
691
+ 'user',
692
  'content':
693
+ f'Create an imaginative video descriptive caption or modify an earlier caption in ENGLISH for the user input: "{prompt}"',
694
  })
695
  lock.acquire()
696
  outputs = self.enhancer(
 
741
  ########################################
742
  @spaces.GPU(duration=120)
743
  def run_chat(
744
+ message,
745
+ legacy_image,
746
+ ui_mode,
747
+ use_ace,
748
+ extend_prompt,
749
+ history,
750
+ images,
751
+ use_history,
752
+ history_result,
753
+ negative_prompt,
754
+ cfg_scale,
755
+ rescale,
756
+ refiner_prompt,
757
+ refiner_scale,
758
+ step,
759
+ seed,
760
+ output_h,
761
+ output_w,
762
+ video_auto,
763
+ video_steps,
764
+ video_frames,
765
+ video_cfg_scale,
766
+ video_fps,
767
+ video_seed,
768
+ progress=gr.Progress(track_tqdm=True)):
769
  legacy_img_ids = []
770
  if ui_mode == 'legacy':
771
  if legacy_image is not None:
 
796
  )
797
  continue
798
  placeholder = '{image}' if i == 0 else '{' + f'image{i}' + '}'
799
+ if placeholder not in new_message:
800
+ new_message = re.sub(f'@{img_id}', placeholder,
801
+ new_message)
802
+ else:
803
+ new_message = re.sub(f'@{img_id} ', "",
804
+ new_message, 1)
805
  img_meta = images[img_id]
806
  img_path = img_meta['image']
807
  img_mask = img_meta['mask']
 
836
  mask=edit_image_mask,
837
  task=edit_task,
838
  prompt=[new_message] *
839
+ len(edit_image) if edit_image is not None else [new_message],
840
  negative_prompt=[negative_prompt] * len(edit_image)
841
  if edit_image is not None else [negative_prompt],
842
  history_io=history_io,
843
  output_height=output_h,
844
  output_width=output_w,
845
+ sampler=self.pipe.input.get("sampler", "ddim"),
846
  sample_steps=step,
847
  guide_scale=cfg_scale,
848
  guide_rescale=rescale,
 
913
  device='cuda').manual_seed(video_seed)
914
  pixel_values = load_image(img.convert('RGB'),
915
  max_num=self.llm_max_num).to(
916
+ torch.bfloat16).cuda()
917
  prompt = self.captioner.chat(self.llm_tokenizer, pixel_values,
918
  self.llm_prompt,
919
  self.llm_generation_config)
 
924
  messages = copy.deepcopy(self.enhance_ctx)
925
  messages.append({
926
  'role':
927
+ 'user',
928
  'content':
929
+ f'Create an imaginative video descriptive caption or modify an earlier caption in ENGLISH for the user input: "{prompt}"',
930
  })
931
  lock.acquire()
932
  outputs = self.enhancer(
 
961
  return (history, images, gr.Image(value=save_path),
962
  history_result, self.get_history(
963
  history), gr.update(), gr.update(
964
+ visible=False), retry_msg)
965
 
966
  chat_inputs = [
967
  self.legacy_image_uploader, self.ui_mode, self.use_ace,
 
1011
  w = int(w / ratio)
1012
  img = img.resize((w, h))
1013
  edit_image.append(img)
1014
+ if img_mask is not None:
1015
+ img_mask = img_mask if np.sum(np.array(img_mask)) > 0 else None
1016
  edit_image_mask.append(
1017
  img_mask if img_mask is not None else None)
1018
  edit_task.append(task)
1019
+ if ref1 is not None:
1020
+ ref1 = ref1 if np.sum(np.array(ref1)) > 0 else None
1021
  if ref1 is not None:
1022
  edit_image.append(ref1)
1023
  edit_image_mask.append(None)
 
1057
  img_id = get_md5(img_b64)[:12]
1058
  save_path = os.path.join(self.cache_dir, f'{img_id}.png')
1059
  img.convert('RGB').save(save_path)
1060
+
1061
  return self.get_history(history), gr.update(value=''), gr.update(
1062
  visible=False), gr.update(value=save_path), gr.update(value=-1)
1063
 
 
1089
  examples_per_page=4,
1090
  cache_examples=False,
1091
  run_on_click=True)
1092
+
1093
  ########################################
1094
  def upload_image():
1095
  return (gr.update(visible=True,
 
1180
  image, history, images)
1181
  return gr.update(visible=False), gr.update(
1182
  visible=True), gr.update(
1183
+ value=self.get_history(history)), history, images
1184
 
1185
  self.sub_btn_1.click(
1186
  submit_upload_image,
 
1196
  imagemask, mask_type, history, images)
1197
  return gr.update(visible=False), gr.update(
1198
  visible=True), gr.update(
1199
+ value=self.get_history(history)), history, images
1200
 
1201
  self.sub_btn_2.click(submit_edit_image,
1202
  inputs=[
 
1412
  return history, images, img_id
1413
 
1414
 
 
1415
  if __name__ == '__main__':
1416
  cfg = "config/chatbot_ui.yaml"
1417
  with gr.Blocks() as demo: