upodate width of chatbot componenet using css
Browse files
app.py
CHANGED
@@ -61,7 +61,7 @@ Assistant: <utterance>
|
|
61 |
In this app, you can explore the outputs of a 20B large language model.
|
62 |
"""
|
63 |
|
64 |
-
with gr.Blocks(css = "#chatbot {height: 400px; overflow: auto;}") as demo:
|
65 |
gr.HTML(title)
|
66 |
chatbot = gr.Chatbot(elem_id='chatbot') #c
|
67 |
inputs = gr.Textbox(placeholder= "Hi my name is Joe.", label= "Type an input and press Enter") #t
|
|
|
61 |
In this app, you can explore the outputs of a 20B large language model.
|
62 |
"""
|
63 |
|
64 |
+
with gr.Blocks(css = "#chatbot {width: 700px; height: 400px; overflow: auto;}") as demo:
|
65 |
gr.HTML(title)
|
66 |
chatbot = gr.Chatbot(elem_id='chatbot') #c
|
67 |
inputs = gr.Textbox(placeholder= "Hi my name is Joe.", label= "Type an input and press Enter") #t
|