Spaces:
Sleeping
Sleeping
Allen Park
commited on
Commit
·
ae781e2
1
Parent(s):
a2a0b4e
fix(make columns with inputs same height)
Browse files
app.py
CHANGED
@@ -247,7 +247,7 @@ with gr.Blocks(css=css, theme=gr.themes.Default(spacing_size="sm", font=[gr.them
|
|
247 |
base_url_state = gr.State(update_client_base_url("Patronus Lynx 8B v1.1"))
|
248 |
gr.Markdown(HEADER)
|
249 |
model_dropdown = gr.Dropdown(choices=["Patronus Lynx 8B v1.1", "Patronus Lynx 70B"], value="Patronus Lynx 8B v1.1", label="Model", interactive=True)
|
250 |
-
with gr.Row():
|
251 |
with gr.Column(scale=1):
|
252 |
with gr.Row():
|
253 |
question = gr.Textbox(label="Question")
|
|
|
247 |
base_url_state = gr.State(update_client_base_url("Patronus Lynx 8B v1.1"))
|
248 |
gr.Markdown(HEADER)
|
249 |
model_dropdown = gr.Dropdown(choices=["Patronus Lynx 8B v1.1", "Patronus Lynx 70B"], value="Patronus Lynx 8B v1.1", label="Model", interactive=True)
|
250 |
+
with gr.Row(equal_height=True):
|
251 |
with gr.Column(scale=1):
|
252 |
with gr.Row():
|
253 |
question = gr.Textbox(label="Question")
|