Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -59,9 +59,7 @@ def find_question_and_answer(json_file, question):
|
|
| 59 |
return selected_response
|
| 60 |
|
| 61 |
if __name__ == '__main__':
|
| 62 |
-
|
| 63 |
-
# while True:
|
| 64 |
-
user_input = st.text_area(f"Enter your question:")
|
| 65 |
response = find_question_and_answer(json_file_path, user_input)
|
| 66 |
st.write(response)
|
| 67 |
|
|
|
|
| 59 |
return selected_response
|
| 60 |
|
| 61 |
if __name__ == '__main__':
|
| 62 |
+
user_input = st.text_area("Enter your question: ")
|
|
|
|
|
|
|
| 63 |
response = find_question_and_answer(json_file_path, user_input)
|
| 64 |
st.write(response)
|
| 65 |
|