pihull commited on
Commit
d5d175f
·
1 Parent(s): bc3f5f2

fix: markdown scale

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -209,10 +209,16 @@ with gr.Blocks(title="Text-to-SQL Debugger", theme=gr.themes.Soft()) as app:
209
  label="3. Enter Question ID",
210
  value="1",
211
  lines=2,
212
- placeholder="e.g. 1",
213
  scale=2,
 
214
  )
215
- range_md = gr.Markdown(get_range_display("LLMSQL 2.0"), scale=1)
 
 
 
 
 
216
 
217
  run_button = gr.Button("Run Inference", variant="primary")
218
  question_box = gr.Textbox(
 
209
  label="3. Enter Question ID",
210
  value="1",
211
  lines=2,
212
+ placeholder="e.g. 15001",
213
  scale=2,
214
+ min_width=200,
215
  )
216
+ with gr.Column(scale=1):
217
+ range_md = gr.Markdown(
218
+ get_range_display("LLMSQL 2.0"),
219
+ line_breaks=True,
220
+ padding=True,
221
+ )
222
 
223
  run_button = gr.Button("Run Inference", variant="primary")
224
  question_box = gr.Textbox(