Koomemartin commited on
Commit
73c52a1
·
verified ·
1 Parent(s): cd70095

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
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 "Error" in website.title:
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...")