Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -87,11 +87,17 @@ def load_chatbot():
|
|
87 |
return load_qa_chain(llm=OpenAI(), chain_type="stuff")
|
88 |
|
89 |
def main():
|
90 |
-
st.title("BinDocs
|
91 |
st.markdown(
|
92 |
-
"""
|
93 |
|
94 |
-
Hello! I’m your friendly assistant, designed to help you navigate through our platform with ease.
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
#### How to Interact:
|
96 |
Simply type in your question or concern, and I will do my best to assist you. Examples are shown at the bottom of this page. Try some out!"""
|
97 |
)
|
|
|
87 |
return load_qa_chain(llm=OpenAI(), chain_type="stuff")
|
88 |
|
89 |
def main():
|
90 |
+
st.title("Welcome to BinDocs ChatBot! ")
|
91 |
st.markdown(
|
92 |
+
"""
|
93 |
|
94 |
+
Hello! I’m your friendly assistant, designed to help you navigate through our platform with ease. Here's a snapshot of what I can assist you with:
|
95 |
+
📘 **Glossary Inquiries:**
|
96 |
+
Having trouble understanding specific terms? Ask me! For instance, if you are unsure about what "DiGA" means, just type in “What is DiGA?” and I will provide you with a detailed explanation based on our glossary.
|
97 |
+
|
98 |
+
🆘 **Help Page Navigation:**
|
99 |
+
I can guide you through our help page and answer your queries regarding any problems or inquiries you might have, such as “Forgot your Password?” or other platform-related concerns.
|
100 |
+
|
101 |
#### How to Interact:
|
102 |
Simply type in your question or concern, and I will do my best to assist you. Examples are shown at the bottom of this page. Try some out!"""
|
103 |
)
|