rwayz commited on
Commit
dcf1e2f
verified
1 Parent(s): 9d19186

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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=1, min_width=100) # margem esquerda
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=1, min_width=100) # margem direita
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)