Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -103,11 +103,13 @@ if user_query:
|
|
103 |
with st.spinner("Scraping website..."):
|
104 |
website = get_all_details(url)
|
105 |
|
106 |
-
if
|
107 |
-
st.error("Failed to load the website. Please check the URL.")
|
108 |
-
else:
|
109 |
st.success("Website loaded successfully!")
|
110 |
-
st.write(f"**Website Title:** {website.title}")
|
|
|
|
|
|
|
|
|
111 |
|
112 |
# Call Groq API for processing
|
113 |
st.write("Querying the website...")
|
|
|
103 |
with st.spinner("Scraping website..."):
|
104 |
website = get_all_details(url)
|
105 |
|
106 |
+
if website:
|
|
|
|
|
107 |
st.success("Website loaded successfully!")
|
108 |
+
# st.write(f"**Website Title:** {website.title}")
|
109 |
+
|
110 |
+
else:
|
111 |
+
st.error("Failed to load the website. Please check the URL.")
|
112 |
+
|
113 |
|
114 |
# Call Groq API for processing
|
115 |
st.write("Querying the website...")
|