Reducing bot window size
Browse files
app.py
CHANGED
@@ -72,7 +72,7 @@ def bot(history):
|
|
72 |
|
73 |
with gr.Blocks() as demo:
|
74 |
gr.HTML("<h1 style='text-align: center;color: darkblue'>Grady - Your helpful Grading Assistant</h1>")
|
75 |
-
chatbot = gr.Chatbot(get_first_message([]), elem_id="chatbot", interactive=True).style(height=
|
76 |
|
77 |
with gr.Row():
|
78 |
# Create radio button to select model
|
|
|
72 |
|
73 |
with gr.Blocks() as demo:
|
74 |
gr.HTML("<h1 style='text-align: center;color: darkblue'>Grady - Your helpful Grading Assistant</h1>")
|
75 |
+
chatbot = gr.Chatbot(get_first_message([]), elem_id="chatbot", interactive=True).style(height=500)
|
76 |
|
77 |
with gr.Row():
|
78 |
# Create radio button to select model
|