Threadbourne commited on
Commit
0403faa
·
verified ·
1 Parent(s): fb1ad50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -92,16 +92,16 @@ with gr.Blocks(theme=gr.themes.Glass()) as app:
92
 
93
  with gr.Row():
94
  # COLUMN 1
95
- with gr.Column():
96
- lbl_a = gr.Textbox(label="Label 1", value="Me (Prompt)", placeholder="Name this input...")
97
  box_a = gr.TextArea(show_label=False, placeholder="Paste text here...", lines=4)
98
  # COLUMN 2
99
- with gr.Column():
100
- lbl_b = gr.Textbox(label="Label 2", value="Model A", placeholder="Name this input...")
101
  box_b = gr.TextArea(show_label=False, placeholder="Paste text here...", lines=4)
102
  # COLUMN 3
103
- with gr.Column():
104
- lbl_c = gr.Textbox(label="Label 3", value="Model B", placeholder="Name this input...")
105
  box_c = gr.TextArea(show_label=False, placeholder="Paste text here...", lines=4)
106
 
107
  btn = gr.Button("RUN THE ARRAY", variant="primary")
 
92
 
93
  with gr.Row():
94
  # COLUMN 1
95
+ with gr.Column(min_width=100):
96
+ lbl_a = gr.Textbox(label="Label 1", value="Model A", placeholder="Name this input...")
97
  box_a = gr.TextArea(show_label=False, placeholder="Paste text here...", lines=4)
98
  # COLUMN 2
99
+ with gr.Column(min_width=100):
100
+ lbl_b = gr.Textbox(label="Label 2", value="Model B", placeholder="Name this input...")
101
  box_b = gr.TextArea(show_label=False, placeholder="Paste text here...", lines=4)
102
  # COLUMN 3
103
+ with gr.Column(min_width=100):
104
+ lbl_c = gr.Textbox(label="Label 3", value="Model C", placeholder="Name this input...")
105
  box_c = gr.TextArea(show_label=False, placeholder="Paste text here...", lines=4)
106
 
107
  btn = gr.Button("RUN THE ARRAY", variant="primary")