Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -171,7 +171,7 @@ if ask:
|
|
171 |
with st.spinner("this can take about a minute for your first question because some models have to be downloaded π₯Ίππ»ππ»"):
|
172 |
try:
|
173 |
answer, pages, extract = get_answer(question=user_input)
|
174 |
-
except as e:
|
175 |
st.write(f"Error with Download: {e}")
|
176 |
st.stop()
|
177 |
|
|
|
171 |
with st.spinner("this can take about a minute for your first question because some models have to be downloaded π₯Ίππ»ππ»"):
|
172 |
try:
|
173 |
answer, pages, extract = get_answer(question=user_input)
|
174 |
+
except Exception as e:
|
175 |
st.write(f"Error with Download: {e}")
|
176 |
st.stop()
|
177 |
|