pablocst commited on
Commit
51719a0
·
1 Parent(s): 30677dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -117,8 +117,8 @@ with gr.Blocks(css=css) as demo:
117
  with gr.Column(elem_id="col_container"):
118
  openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here")
119
  chatbot = gr.Chatbot(elem_id="chatbot")
120
- with gr.Row(elem_id="input_textbox"):
121
- inputs = gr.Textbox(placeholder="Hi there!", label="Type an input and press Enter", elem_id="input_textbox")
122
  state = gr.State([])
123
  b1 = gr.Button()
124
 
 
117
  with gr.Column(elem_id="col_container"):
118
  openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here")
119
  chatbot = gr.Chatbot(elem_id="chatbot")
120
+ with gr.Column(elem_id="input_textbox"):
121
+ inputs = gr.Textbox(placeholder="Hi there!", label="Type an input and press Enter")
122
  state = gr.State([])
123
  b1 = gr.Button()
124