Update app.py
Browse files
app.py
CHANGED
@@ -41,14 +41,20 @@ with st.sidebar:
|
|
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 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
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
|
|
|
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 |
+
glossary_option = st.selectbox(
|
47 |
+
'Want to see more Glossary Topics to ask about?',
|
48 |
+
('Basisfallwert', 'Cash Flow', 'Arzneimittelgesetz (AMG)')
|
49 |
+
)
|
50 |
+
|
51 |
+
whitepaper_option = st.selectbox(
|
52 |
+
'Did you know we\'ve authored some really insightful and helpful whitepapers as well?',
|
53 |
+
('Title1', 'Title2', 'Title3')
|
54 |
+
)
|
55 |
+
|
56 |
+
st.write('Made with ❤️ by BinDoc GmbH')
|
57 |
|
|
|
58 |
|
59 |
api_key = os.getenv("OPENAI_API_KEY")
|
60 |
# Retrieve the API key from st.secrets
|