Spaces:
Sleeping
Sleeping
commit
Browse files
app.py
CHANGED
|
@@ -9,14 +9,12 @@ st.title("Chat with websites")
|
|
| 9 |
|
| 10 |
# sidebar
|
| 11 |
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
website_url = st.text_input("Website URL",
|
| 15 |
placeholder='https://en.wikipedia.org/wiki/Artificial_intelligence')
|
| 16 |
|
| 17 |
-
|
| 18 |
if website_url is None or website_url == "":
|
| 19 |
-
|
| 20 |
|
| 21 |
else:
|
| 22 |
# session state
|
|
|
|
| 9 |
|
| 10 |
# sidebar
|
| 11 |
|
| 12 |
+
st.header("Chat With Website")
|
| 13 |
+
website_url = st.text_input("Website URL",
|
|
|
|
| 14 |
placeholder='https://en.wikipedia.org/wiki/Artificial_intelligence')
|
| 15 |
|
|
|
|
| 16 |
if website_url is None or website_url == "":
|
| 17 |
+
st.info("Please provide a website URL and hit enter")
|
| 18 |
|
| 19 |
else:
|
| 20 |
# session state
|