update
Browse files
app.py
CHANGED
@@ -94,7 +94,7 @@ with gr.Blocks() as demo:
|
|
94 |
in_img_guidance_scale = gr.Slider(1,10, step=0.5, label="Set Image Guidance scale", value=1.5)
|
95 |
image_hid = gr.Image(visible=False,type='pil')
|
96 |
img_name_temp_out = gr.Textbox(visible=False)
|
97 |
-
counter_out = gr.Number(visible=False, value=0, precision=
|
98 |
chatbot = gr.Chatbot()
|
99 |
b1.click(chat,[image_in, in_steps, in_guidance_scale, in_img_guidance_scale, image_hid, img_name_temp_out,counter_out, text_in, state_in], [chatbot, state_in, image_hid, img_name_temp_out, counter_out]) #, queue=True)
|
100 |
gr.Markdown(help_text)
|
|
|
94 |
in_img_guidance_scale = gr.Slider(1,10, step=0.5, label="Set Image Guidance scale", value=1.5)
|
95 |
image_hid = gr.Image(visible=False,type='pil')
|
96 |
img_name_temp_out = gr.Textbox(visible=False)
|
97 |
+
counter_out = gr.Number(visible=False, value=0, precision=0)
|
98 |
chatbot = gr.Chatbot()
|
99 |
b1.click(chat,[image_in, in_steps, in_guidance_scale, in_img_guidance_scale, image_hid, img_name_temp_out,counter_out, text_in, state_in], [chatbot, state_in, image_hid, img_name_temp_out, counter_out]) #, queue=True)
|
100 |
gr.Markdown(help_text)
|