Spaces:
Sleeping
Sleeping
Update app.py (#1)
Browse files- Update app.py (52eada4aebc7cf603db03484cfeda6ac3808e3a6)
Co-authored-by: Nil <[email protected]>
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
|