Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -56,10 +56,10 @@ models = {
|
|
56 |
}
|
57 |
|
58 |
with gr.Blocks() as demo:
|
59 |
-
chatbot = gr.Chatbot()
|
60 |
|
61 |
with gr.Row():
|
62 |
-
msg = gr.Textbox(scale=4, label="메시지 입력")
|
63 |
send = gr.Button("전송", scale=1)
|
64 |
|
65 |
with gr.Row():
|
|
|
56 |
}
|
57 |
|
58 |
with gr.Blocks() as demo:
|
59 |
+
chatbot = gr.Chatbot(height=800)
|
60 |
|
61 |
with gr.Row():
|
62 |
+
msg = gr.Textbox(scale=4, label="메시지 입력", lines=5)
|
63 |
send = gr.Button("전송", scale=1)
|
64 |
|
65 |
with gr.Row():
|