Gainward777 commited on
Commit
98256ec
·
verified ·
1 Parent(s): b84b8a1

Update ui/gradio_ui.py

Browse files
Files changed (1) hide show
  1. ui/gradio_ui.py +4 -4
ui/gradio_ui.py CHANGED
@@ -29,10 +29,10 @@ def ui(controller):#get_first_result,get_second_result): #controller):
29
  result_button = gr.Button(value="Paint It", variant="primary")
30
 
31
  with gr.Row():
32
- gr.Examples([["./examples/sketch.png"],
33
- ["solo, open mouth, white background, standing, tail, full body,bmonochrome, greyscale, from side, no humans, animal, dog, animal focus, realistic, walk on the street, add city on the backstage, city street"],
34
- ["solo, open mouth, simple background, grey background, standing, full body, monochrome, greyscale, from side, no humans, animal, dog, animal focus, lineart, wolf"]],
35
- [sketch, first_prompt, second_prompt],
36
  label='Examples. Be concrete as much as possible.')
37
 
38
 
 
29
  result_button = gr.Button(value="Paint It", variant="primary")
30
 
31
  with gr.Row():
32
+ gr.Examples(examples=[["./examples/sketch.png",
33
+ "solo, open mouth, white background, standing, tail, full body,bmonochrome, greyscale, from side, no humans, animal, dog, animal focus, realistic, walk on the street, add city on the backstage, city street",
34
+ "solo, open mouth, simple background, grey background, standing, full body, monochrome, greyscale, from side, no humans, animal, dog, animal focus, lineart, wolf"]],
35
+ inputs=[sketch, first_prompt, second_prompt],
36
  label='Examples. Be concrete as much as possible.')
37
 
38