ivyblossom commited on
Commit
4bd7bfe
1 Parent(s): f601880

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ def question_answering(question, text):
18
  return answer
19
 
20
  def main():
21
- st.title("Question Answering on Uploaded Files")
22
 
23
  uploaded_file = st.file_uploader("Upload a file:", type=["pdf", "txt"]) # , "docx", "csv", "json", "txt"
24
  question = st.text_input("Ask your question:")
 
18
  return answer
19
 
20
  def main():
21
+ st.title("Question Answering on an Uploaded File")
22
 
23
  uploaded_file = st.file_uploader("Upload a file:", type=["pdf", "txt"]) # , "docx", "csv", "json", "txt"
24
  question = st.text_input("Ask your question:")