Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -68,16 +68,16 @@ def sysml_chatbot(message, history):
|
|
68 |
with gr.Blocks() as demo:
|
69 |
gr.Markdown("## SysModeler Chatbot")
|
70 |
|
71 |
-
chatbot = gr.Chatbot(height=
|
72 |
|
73 |
with gr.Row():
|
74 |
-
with gr.Column(scale=
|
75 |
msg = gr.Textbox(
|
76 |
placeholder="Ask me about SysML diagrams or concepts...",
|
77 |
lines=3,
|
78 |
show_label=False
|
79 |
)
|
80 |
-
with gr.Column(scale=1, min_width=
|
81 |
submit_btn = gr.Button("➤")
|
82 |
|
83 |
clear = gr.Button("Clear")
|
|
|
68 |
with gr.Blocks() as demo:
|
69 |
gr.Markdown("## SysModeler Chatbot")
|
70 |
|
71 |
+
chatbot = gr.Chatbot(height=600)
|
72 |
|
73 |
with gr.Row():
|
74 |
+
with gr.Column(scale=5):
|
75 |
msg = gr.Textbox(
|
76 |
placeholder="Ask me about SysML diagrams or concepts...",
|
77 |
lines=3,
|
78 |
show_label=False
|
79 |
)
|
80 |
+
with gr.Column(scale=1, min_width=50):
|
81 |
submit_btn = gr.Button("➤")
|
82 |
|
83 |
clear = gr.Button("Clear")
|