Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
|
|
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 |
|