Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -108,7 +108,7 @@ In this app, you can explore the outputs of a gpt-3.5-turbo LLM.
|
|
108 |
css = """
|
109 |
#col_container {height: 2520px; max-width: 1300px; margin-left: auto; margin-right: auto;}
|
110 |
#chatbot {height: 520px; overflow: auto;}
|
111 |
-
#chatbot2 {height:
|
112 |
"""
|
113 |
|
114 |
with gr.Blocks(css=css) as demo:
|
@@ -117,7 +117,7 @@ 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="chatbot2")
|
121 |
state = gr.State([])
|
122 |
b1 = gr.Button()
|
123 |
|
|
|
108 |
css = """
|
109 |
#col_container {height: 2520px; max-width: 1300px; margin-left: auto; margin-right: auto;}
|
110 |
#chatbot {height: 520px; overflow: auto;}
|
111 |
+
#chatbot2 {height: 300px; overflow: auto;}
|
112 |
"""
|
113 |
|
114 |
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="chatbot2", lines=2)
|
121 |
state = gr.State([])
|
122 |
b1 = gr.Button()
|
123 |
|