Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -94,6 +94,16 @@ def load_chatbot():
|
|
94 |
return load_qa_chain(llm=OpenAI(), chain_type="stuff")
|
95 |
|
96 |
def main():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
# Main content
|
98 |
st.title("Welcome to BinDocs ChatBot! 🤖")
|
99 |
|
|
|
94 |
return load_qa_chain(llm=OpenAI(), chain_type="stuff")
|
95 |
|
96 |
def main():
|
97 |
+
|
98 |
+
hide_streamlit_style = """
|
99 |
+
<style>
|
100 |
+
#MainMenu {visibility: hidden;}
|
101 |
+
footer {visibility: hidden;}
|
102 |
+
</style>
|
103 |
+
"""
|
104 |
+
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
105 |
+
|
106 |
+
|
107 |
# Main content
|
108 |
st.title("Welcome to BinDocs ChatBot! 🤖")
|
109 |
|