Update app.py
Browse files
app.py
CHANGED
@@ -21,35 +21,21 @@ with st.sidebar:
|
|
21 |
# Display the instruction manual for the Document Data Chatbot in a formatted markdown
|
22 |
st.markdown(
|
23 |
"""
|
24 |
-
# Document
|
25 |
|
26 |
-
Welcome to the Document
|
27 |
-
|
28 |
-
##
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
## Tips for a Better Experience β¨
|
40 |
-
- **Be Specific**: Specific questions help in getting precise answers.
|
41 |
-
- **Check for Typing Errors**: Correct spelling ensures better understanding by the chatbot.
|
42 |
-
- **Emoji Use**: Emojis are welcome in your questions!
|
43 |
-
- **Patience is Key**: Responses may take a moment as the chatbot processes your query.
|
44 |
-
|
45 |
-
## Support and Feedback π€
|
46 |
-
- **Need Help?**: Contact our support team for any issues.
|
47 |
-
- **Share Your Feedback**: Your input is valuable and helps us improve.
|
48 |
-
|
49 |
-
## The Team Behind the App π§βπ»π©βπ»
|
50 |
-
- **Founders**: Learn about [Peter Yin](https://www.linkedin.com/in/peter-yin-7914ba25/) and [Yiqiao Yin](https://www.linkedin.com/in/yiqiaoyin/), the founders, on LinkedIn.
|
51 |
-
|
52 |
-
Thank you for choosing the Document Data Chatbot. We're here to provide all the information you need about Document Data efficiently. Happy chatting! ππ¬
|
53 |
"""
|
54 |
)
|
55 |
|
|
|
21 |
# Display the instruction manual for the Document Data Chatbot in a formatted markdown
|
22 |
st.markdown(
|
23 |
"""
|
24 |
+
# Document Search App Instruction Manual ππ€
|
25 |
|
26 |
+
Welcome to the Document Search App! This guide will help you quickly start using the app to find information in your documents.
|
27 |
+
|
28 |
+
## Quick Start Guide
|
29 |
+
|
30 |
+
1. **Upload Document**: Click on the "Upload documents" button in the sidebar and select your PDF or text files. Multiple files can be uploaded at once.
|
31 |
+
2. **Enter Keywords**: After your documents are uploaded, use the chat input at the bottom of the app to type your query. For example, you could type keywords or questions related to the content you're interested in.
|
32 |
+
3. **Review Results**: Hit 'Enter' to submit your query. The app will process your input and display the most relevant information from your documents in the form of a table right within the chat interface.
|
33 |
+
|
34 |
+
## Credits
|
35 |
+
|
36 |
+
This app was created by Yiqiao Yin. For more about his work, visit his [website](https://www.y-yin.io/) or connect with him on [LinkedIn](https://www.linkedin.com/in/yiqiaoyin/).
|
37 |
+
|
38 |
+
Thank you for using the Document Search App! We hope it serves your information retrieval needs effectively. ππ
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
"""
|
40 |
)
|
41 |
|