The-Adnan-Syed commited on
Commit
626a829
·
verified ·
1 Parent(s): 668b7d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -15,7 +15,14 @@ from langchain.prompts import PromptTemplate
15
  import streamlit.components.v1 as components
16
  from openai import OpenAI
17
 
18
-
 
 
 
 
 
 
 
19
 
20
  client = OpenAI(api_key="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")
21
 
 
15
  import streamlit.components.v1 as components
16
  from openai import OpenAI
17
 
18
+ hide_streamlit_style = """
19
+ <style>
20
+ #MainMenu {visibility: hidden;}
21
+ footer {visibility: hidden;}
22
+ </style>
23
+
24
+ """
25
+ st.markdown(hide_streamlit_style, unsafe_allow_html=True)
26
 
27
  client = OpenAI(api_key="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")
28