ysharma HF staff commited on
Commit
f7e4a53
1 Parent(s): c6b24b2

update chatbot label

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -216,10 +216,10 @@ with gr.Blocks(css="style.css") as demo:
216
  counter_out = gr.Number(visible=False, value=0, precision=0)
217
 
218
  #with gr.Row():
219
- text_in = gr.Textbox(value='', Placeholder="Type your instructions here and press enter", elem_id = "input_prompt", visible=False, label='Great! Now you can edit your image with Instructions')
220
- btn_upload = gr.UploadButton("Upload image", file_types=["image"], file_count="single", elem_id="upload_button")
221
 
222
- chatbot = gr.Chatbot(elem_id = 'chatbot-component')
223
  state_in = gr.State()
224
 
225
  #Using Event Listeners
 
216
  counter_out = gr.Number(visible=False, value=0, precision=0)
217
 
218
  #with gr.Row():
219
+ text_in = gr.Textbox(value='', placeholder="Type your instructions here and press enter", elem_id = "input_prompt", visible=False, label='Great! Now you can edit your image with Instructions')
220
+ btn_upload = gr.UploadButton("Upload image to start editing", file_types=["image"], file_count="single", elem_id="upload_button")
221
 
222
+ chatbot = gr.Chatbot(elem_id = 'chatbot-component', label='Conversational editing for Images')
223
  state_in = gr.State()
224
 
225
  #Using Event Listeners