pablocst commited on
Commit
30677dc
·
1 Parent(s): 33a8cd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -117,7 +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
- inputs = gr.Textbox(placeholder="Hi there!", label="Type an input and press Enter", elem_id="input_textbox", lines=3)
 
121
  state = gr.State([])
122
  b1 = gr.Button()
123
 
 
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