Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -54,7 +54,7 @@ def chatbot_response(user_input, model_name):
|
|
54 |
|
55 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
56 |
with gr.Row():
|
57 |
-
gr.Column(scale=
|
58 |
|
59 |
with gr.Column(scale=4):
|
60 |
with gr.Row():
|
@@ -74,7 +74,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
74 |
history_btn = gr.Button("Hist贸rico", variant="secondary")
|
75 |
history_output = gr.JSON()
|
76 |
|
77 |
-
gr.Column(scale=
|
78 |
|
79 |
def respond(message, chat_history, model_name):
|
80 |
response = chatbot_response(message, model_name)
|
|
|
54 |
|
55 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
56 |
with gr.Row():
|
57 |
+
gr.Column(scale=0.5, min_width=40)
|
58 |
|
59 |
with gr.Column(scale=4):
|
60 |
with gr.Row():
|
|
|
74 |
history_btn = gr.Button("Hist贸rico", variant="secondary")
|
75 |
history_output = gr.JSON()
|
76 |
|
77 |
+
gr.Column(scale=0.5, min_width=40)
|
78 |
|
79 |
def respond(message, chat_history, model_name):
|
80 |
response = chatbot_response(message, model_name)
|