Update app.py
Browse files
app.py
CHANGED
@@ -97,7 +97,7 @@ description = """Language models can be conditioned to act like dialogue agents
|
|
97 |
|
98 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
99 |
#chatbot {height: 520px; overflow: auto;}""") as demo:
|
100 |
-
|
101 |
openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here")
|
102 |
chatbot = gr.Chatbot(elem_id='chatbot') #c
|
103 |
inputs = gr.Textbox(placeholder= "Type here!", label= "Type an input and press Enter") #t
|
|
|
97 |
|
98 |
with gr.Blocks(css = """#col_container {width: 1000px; margin-left: auto; margin-right: auto;}
|
99 |
#chatbot {height: 520px; overflow: auto;}""") as demo:
|
100 |
+
with gr.Column(elem_id = "col_container"):
|
101 |
openai_api_key = gr.Textbox(type='password', label="Enter your OpenAI API key here")
|
102 |
chatbot = gr.Chatbot(elem_id='chatbot') #c
|
103 |
inputs = gr.Textbox(placeholder= "Type here!", label= "Type an input and press Enter") #t
|