captain-awesome
commited on
Commit
•
c306f1c
1
Parent(s):
3b75a38
Update app.py
Browse files
app.py
CHANGED
@@ -94,11 +94,8 @@ else:
|
|
94 |
]
|
95 |
|
96 |
if "vector_store" not in st.session_state:
|
97 |
-
st.session_state.vector_store =
|
98 |
|
99 |
-
documents = get_vector_store_from_url(website_url)
|
100 |
-
with st.sidebar:
|
101 |
-
st.write(documents)
|
102 |
|
103 |
#user_input
|
104 |
user_query = st.chat_input("Type your message here...")
|
|
|
94 |
]
|
95 |
|
96 |
if "vector_store" not in st.session_state:
|
97 |
+
st.session_state.vector_store = get_vector_store_from_url(website_url)
|
98 |
|
|
|
|
|
|
|
99 |
|
100 |
#user_input
|
101 |
user_query = st.chat_input("Type your message here...")
|