callanwu commited on
Commit
b4399d0
·
verified ·
1 Parent(s): b1b4a08

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -8
app.py CHANGED
@@ -135,17 +135,10 @@ if __name__ == "__main__":
135
  st.title('🤝WebWalker')
136
  st.markdown("### 📚Introduction")
137
  st.markdown("👋Welcome to WebWalker! WebWalker is a web-based conversational agent that can help you navigate websites and find information.")
138
- st.markdown("📑The paper of WebWalker is available at [arXiv]().")
139
  st.markdown("✨You can bulid your own WebWalker by following the [instruction](https://github.com/Alibaba-NLP/WebWalker).")
140
  st.markdown("🙋If you have any questions, please feel free to contact us via the [Github issue](https://github.com/Alibaba-NLP/WebWalker/issue).")
141
  st.markdown("### 🚀Let's start exploring the website!")
142
- st.text("⌛️When you first use this app, you need to wait for a while to initialize the environment. Please be patient.")
143
- if flag == 0:
144
- init_crawl4ai()
145
- st.text("✅Initialization is complete. You can start using the app now.")
146
- flag = 1
147
- else:
148
- st.text("✅Initialization is complete. You can start using the app now.")
149
  if 'form_1_text' not in st.session_state:
150
  st.session_state.form_1_text = ""
151
  if 'form_2_text' not in st.session_state:
 
135
  st.title('🤝WebWalker')
136
  st.markdown("### 📚Introduction")
137
  st.markdown("👋Welcome to WebWalker! WebWalker is a web-based conversational agent that can help you navigate websites and find information.")
138
+ st.markdown("📑The paper of WebWalker is available at [arXiv](https://arxiv.org/pdf/2501.07572).")
139
  st.markdown("✨You can bulid your own WebWalker by following the [instruction](https://github.com/Alibaba-NLP/WebWalker).")
140
  st.markdown("🙋If you have any questions, please feel free to contact us via the [Github issue](https://github.com/Alibaba-NLP/WebWalker/issue).")
141
  st.markdown("### 🚀Let's start exploring the website!")
 
 
 
 
 
 
 
142
  if 'form_1_text' not in st.session_state:
143
  st.session_state.form_1_text = ""
144
  if 'form_2_text' not in st.session_state: