Spaces:
Sleeping
Sleeping
fix: markdown scale
Browse files
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.
|
| 213 |
scale=2,
|
|
|
|
| 214 |
)
|
| 215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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(
|