Anne31415 commited on
Commit
807533f
Β·
1 Parent(s): c48e7f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -4
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
- st.write('Made with ❀️ by BinDoc GmbH')
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