Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,7 +53,8 @@ if url !="" and not url.strip().isspace() and not url == "" and not url.strip()
|
|
53 |
with st.spinner("AI Thinking...Please wait a while to Cheers!"):
|
54 |
docs = loader.load()
|
55 |
result=chain.run(docs)
|
56 |
-
print(
|
|
|
57 |
st.write("AI Summarization:")
|
58 |
st.write(result)
|
59 |
except Exception as e:
|
|
|
53 |
with st.spinner("AI Thinking...Please wait a while to Cheers!"):
|
54 |
docs = loader.load()
|
55 |
result=chain.run(docs)
|
56 |
+
print(url)
|
57 |
+
print("AI Summarization: "+result)
|
58 |
st.write("AI Summarization:")
|
59 |
st.write(result)
|
60 |
except Exception as e:
|