Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -128,7 +128,7 @@ def display_chat_history(chat_history):
|
|
128 |
st.markdown(f"<div style='background-color: {background_color}; padding: 10px; border-radius: 10px; margin: 10px;'>{chat[0]}: {chat[1]}</div>", unsafe_allow_html=True)
|
129 |
|
130 |
def main():
|
131 |
-
|
132 |
st.title('BinDoc GmbH')
|
133 |
st.markdown("Experience revolutionary interaction with BinDocs Chat App, leveraging state-of-the-art AI technology.")
|
134 |
|
@@ -148,7 +148,6 @@ def main():
|
|
148 |
st.write('Made with ❤️ by BinDoc GmbH')
|
149 |
api_key = os.getenv("OPENAI_API_KEY")
|
150 |
|
151 |
-
|
152 |
hide_streamlit_style = """
|
153 |
<style>
|
154 |
#MainMenu {visibility: hidden;}
|
@@ -211,3 +210,4 @@ def main():
|
|
211 |
|
212 |
if __name__ == "__main__":
|
213 |
main()
|
|
|
|
128 |
st.markdown(f"<div style='background-color: {background_color}; padding: 10px; border-radius: 10px; margin: 10px;'>{chat[0]}: {chat[1]}</div>", unsafe_allow_html=True)
|
129 |
|
130 |
def main():
|
131 |
+
with st.sidebar:
|
132 |
st.title('BinDoc GmbH')
|
133 |
st.markdown("Experience revolutionary interaction with BinDocs Chat App, leveraging state-of-the-art AI technology.")
|
134 |
|
|
|
148 |
st.write('Made with ❤️ by BinDoc GmbH')
|
149 |
api_key = os.getenv("OPENAI_API_KEY")
|
150 |
|
|
|
151 |
hide_streamlit_style = """
|
152 |
<style>
|
153 |
#MainMenu {visibility: hidden;}
|
|
|
210 |
|
211 |
if __name__ == "__main__":
|
212 |
main()
|
213 |
+
|