Spaces:
Sleeping
Sleeping
Allen Park
commited on
Commit
·
187d857
1
Parent(s):
d27dadc
fix(make spacing of example buttons small)
Browse files
app.py
CHANGED
@@ -223,7 +223,7 @@ with gr.Blocks(css=css, theme=gr.themes.Default(font=[gr.themes.GoogleFont("Plus
|
|
223 |
reasoning = gr.Textbox(label="Reasoning")
|
224 |
score = gr.Textbox(label="Score (FAIL if Hallucinated, PASS if not)")
|
225 |
with gr.Row():
|
226 |
-
with gr.Column():
|
227 |
for _, example in enumerate(EXAMPLES):
|
228 |
template_btn = gr.Button(f"{example['emoji']} {example['question']}", elem_classes="example-button")
|
229 |
template_btn.click(
|
|
|
223 |
reasoning = gr.Textbox(label="Reasoning")
|
224 |
score = gr.Textbox(label="Score (FAIL if Hallucinated, PASS if not)")
|
225 |
with gr.Row():
|
226 |
+
with gr.Column(spacing="sm"):
|
227 |
for _, example in enumerate(EXAMPLES):
|
228 |
template_btn = gr.Button(f"{example['emoji']} {example['question']}", elem_classes="example-button")
|
229 |
template_btn.click(
|