update textbox message
Browse files
app.py
CHANGED
@@ -195,7 +195,7 @@ with gr.Blocks(css="style.css") as demo:
|
|
195 |
chatbot = gr.Chatbot()
|
196 |
state_in = gr.State()
|
197 |
with gr.Row():
|
198 |
-
text_in = gr.Textbox(value='', placeholder="Type your instructions here and press Enter")
|
199 |
btn_upload = gr.UploadButton("Upload image", file_types=["image"], file_count="single")
|
200 |
with gr.Accordion("Advance settings for Training and Inference", open=False):
|
201 |
image_in = gr.Image(visible=False,type='pil', label="Original Image")
|
|
|
195 |
chatbot = gr.Chatbot()
|
196 |
state_in = gr.State()
|
197 |
with gr.Row():
|
198 |
+
text_in = gr.Textbox(value='', placeholder="Type your instructions here and press Enter", label="Type and press Enter")
|
199 |
btn_upload = gr.UploadButton("Upload image", file_types=["image"], file_count="single")
|
200 |
with gr.Accordion("Advance settings for Training and Inference", open=False):
|
201 |
image_in = gr.Image(visible=False,type='pil', label="Original Image")
|