Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -30,21 +30,26 @@ pdf_file_path = "Private_Book/Glossar_HELP_DESK_combi.pdf" # Replace with your
|
|
30 |
with st.sidebar:
|
31 |
st.title('BinDoc GmbH')
|
32 |
st.markdown("Experience revolutionary interaction with BinDocs Chat App, leveraging state-of-the-art AI technology.")
|
|
|
33 |
add_vertical_space(2) # Adjust as per the desired spacing
|
34 |
|
35 |
st.markdown("""
|
36 |
Hello! Iβm here to assist you with:<br><br>
|
37 |
π **Glossary Inquiries:**<br>
|
38 |
-
I can clarify terms like "DiGA", "AOP", or "BfArM", providing clear and concise explanations to help you understand our content better
|
39 |
-
.<br><br>
|
40 |
π **Help Page Navigation:**<br>
|
41 |
Ask me if you forgot your password or want to know more about topics related to the platform.
|
42 |
""", unsafe_allow_html=True)
|
43 |
|
44 |
add_vertical_space(3) # Adjust as per the desired spacing
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
47 |
|
|
|
|
|
48 |
api_key = os.getenv("OPENAI_API_KEY")
|
49 |
# Retrieve the API key from st.secrets
|
50 |
|
|
|
30 |
with st.sidebar:
|
31 |
st.title('BinDoc GmbH')
|
32 |
st.markdown("Experience revolutionary interaction with BinDocs Chat App, leveraging state-of-the-art AI technology.")
|
33 |
+
|
34 |
add_vertical_space(2) # Adjust as per the desired spacing
|
35 |
|
36 |
st.markdown("""
|
37 |
Hello! Iβm here to assist you with:<br><br>
|
38 |
π **Glossary Inquiries:**<br>
|
39 |
+
I can clarify terms like "DiGA", "AOP", or "BfArM", providing clear and concise explanations to help you understand our content better.<br><br>
|
|
|
40 |
π **Help Page Navigation:**<br>
|
41 |
Ask me if you forgot your password or want to know more about topics related to the platform.
|
42 |
""", unsafe_allow_html=True)
|
43 |
|
44 |
add_vertical_space(3) # Adjust as per the desired spacing
|
45 |
+
|
46 |
+
option = st.selectbox(
|
47 |
+
'Want to see more Glossary Topics to ask about?',
|
48 |
+
('Basisfallwert', 'Cash Flow', 'Arzneimittelgesetz (AMG)')
|
49 |
+
)
|
50 |
|
51 |
+
st.write('Made with β€οΈ by BinDoc GmbH')
|
52 |
+
|
53 |
api_key = os.getenv("OPENAI_API_KEY")
|
54 |
# Retrieve the API key from st.secrets
|
55 |
|