Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -18,7 +18,7 @@ question = st.text_input("Enter Question", "")
|
|
18 |
# Button to find the answer
|
19 |
if st.button("Find Answer"):
|
20 |
if context and question:
|
21 |
-
# Perform question
|
22 |
answer = question_answerer(context=context, question=question)
|
23 |
|
24 |
# Display the answer
|
|
|
18 |
# Button to find the answer
|
19 |
if st.button("Find Answer"):
|
20 |
if context and question:
|
21 |
+
# Perform question-answering
|
22 |
answer = question_answerer(context=context, question=question)
|
23 |
|
24 |
# Display the answer
|