Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -14,6 +14,8 @@ prompt_template = """Answer the question only according to the information provi
|
|
14 |
## Question :
|
15 |
# {}"""
|
16 |
|
|
|
|
|
17 |
if st.session_state.stage == "crawl-input":
|
18 |
config = st.text_area("Enter the start URL and the limit of crawling (in this format : URL,limit):")
|
19 |
config_btn = st.button("Start crawling!")
|
|
|
14 |
## Question :
|
15 |
# {}"""
|
16 |
|
17 |
+
st.session_state.stage = "crawl-input"
|
18 |
+
|
19 |
if st.session_state.stage == "crawl-input":
|
20 |
config = st.text_area("Enter the start URL and the limit of crawling (in this format : URL,limit):")
|
21 |
config_btn = st.button("Start crawling!")
|