pablocst commited on
Commit
828d72d
·
1 Parent(s): 4597d4d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -112,7 +112,8 @@ with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin
112
  with gr.Column(elem_id = "col_container"):
113
  openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here")
114
  chatbot = gr.Chatbot(elem_id = "chatbot") #c
115
- inputs = gr.Textbox(placeholder = "Hi there!", label= "Type an input and press Enter", elem_id = "chatbot") #t
 
116
  state = gr.State([]) #s
117
  b1 = gr.Button()
118
 
 
112
  with gr.Column(elem_id = "col_container"):
113
  openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here")
114
  chatbot = gr.Chatbot(elem_id = "chatbot") #c
115
+ with gr.Column(elem_id = "text_input"):
116
+ inputs = gr.Textbox(placeholder = "Hi there!", label= "Type an input and press Enter") #t
117
  state = gr.State([]) #s
118
  b1 = gr.Button()
119