ArmelR commited on
Commit
20242f4
1 Parent(s): 8ca88f2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -11,9 +11,10 @@ def load_data():
11
  return ds
12
 
13
  def print_question(example):
14
- st.write("Question : ")
15
  st.write(example["question"])
16
- st.write("Answer : ")
 
17
  st.write(example["response_j"])
18
 
19
  samples = load_data()
 
11
  return ds
12
 
13
  def print_question(example):
14
+ st.markdown("**Question**")
15
  st.write(example["question"])
16
+ st.markdown("""---""")
17
+ st.markdown("**Answer**")
18
  st.write(example["response_j"])
19
 
20
  samples = load_data()