elibrowne commited on
Commit
4ea93c0
·
1 Parent(s): 2eb4cf2

Formatting

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -57,7 +57,7 @@ with gr.Blocks() as user_eval:
57
  ### Question
58
  """ + question_text +
59
  """
60
- **Correct Answer: """ + q["answer"] +
61
  """
62
  ### Relevant Passages
63
  - Dataset 1
@@ -87,6 +87,8 @@ with gr.Blocks() as user_eval:
87
  # Question and answering dynamics
88
  with gr.Row() as question:
89
  with gr.Column():
 
 
90
  gr.Markdown(question_text)
91
  a = gr.Button(answers_text[0])
92
  b = gr.Button(answers_text[1])
 
57
  ### Question
58
  """ + question_text +
59
  """
60
+ **Correct Answer:** """ + q["answer"] +
61
  """
62
  ### Relevant Passages
63
  - Dataset 1
 
87
  # Question and answering dynamics
88
  with gr.Row() as question:
89
  with gr.Column():
90
+ gr.Markdown("---")
91
+ gr.Markdown("**Question**")
92
  gr.Markdown(question_text)
93
  a = gr.Button(answers_text[0])
94
  b = gr.Button(answers_text[1])