Spaces:
Sleeping
Sleeping
elibrowne
commited on
Commit
·
7b539ba
1
Parent(s):
07eb932
Load first question from list
Browse files
app.py
CHANGED
@@ -288,11 +288,11 @@ with gr.Blocks(theme = theme) as user_eval:
|
|
288 |
with gr.Row(equal_height = False, visible = False) as question:
|
289 |
with gr.Column():
|
290 |
gr.Markdown("**Question**")
|
291 |
-
q_text = gr.Markdown(
|
292 |
-
a = gr.Button(
|
293 |
-
b = gr.Button(
|
294 |
-
c = gr.Button(
|
295 |
-
d = gr.Button(
|
296 |
|
297 |
def answer():
|
298 |
return {
|
|
|
288 |
with gr.Row(equal_height = False, visible = False) as question:
|
289 |
with gr.Column():
|
290 |
gr.Markdown("**Question**")
|
291 |
+
q_text = gr.Markdown("Question")
|
292 |
+
a = gr.Button("A")
|
293 |
+
b = gr.Button("B")
|
294 |
+
c = gr.Button("C")
|
295 |
+
d = gr.Button("D")
|
296 |
|
297 |
def answer():
|
298 |
return {
|