annafilina commited on
Commit
3b76eef
·
1 Parent(s): 18ceb3b

Update pages/answers.py

Browse files
Files changed (1) hide show
  1. pages/answers.py +2 -2
pages/answers.py CHANGED
@@ -67,8 +67,8 @@ def main():
67
  context = pair['context']
68
  question = pair['question']
69
 
70
- st.text_area("**:blue[Context]**", value=context)
71
- st.text_input("**:blue[Question]**", value=question)
72
 
73
  if st.button(":blue[**Get Answer**]"):
74
  if context.strip() == "" or question.strip() == "":
 
67
  context = pair['context']
68
  question = pair['question']
69
 
70
+ st.write(f"**Context:** {context}")
71
+ st.write(f"**Question:** {question}")
72
 
73
  if st.button(":blue[**Get Answer**]"):
74
  if context.strip() == "" or question.strip() == "":