mikepastor11 commited on
Commit
3ff5e5b
1 Parent(s): 1e0899f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -116,8 +116,8 @@ def handle_userinput(user_question):
116
  def main():
117
 
118
  # load_dotenv()
119
- st.set_page_config(page_title="Pennwick PDF Analyzer",
120
- page_icon=":people:")
121
 
122
  st.write(css, unsafe_allow_html=True)
123
 
@@ -126,7 +126,8 @@ def main():
126
  if "chat_history" not in st.session_state:
127
  st.session_state.chat_history = None
128
 
129
- st.header("Pennwick File Analyzer :people:")
 
130
 
131
  user_question = st.text_input("Ask the Model a question about your uploaded documents:")
132
  if user_question:
 
116
  def main():
117
 
118
  # load_dotenv()
119
+ # st.set_page_config(page_title="Pennwick PDF Analyzer", page_icon=":books:")
120
+ st.set_page_config(page_title="Pennwick PDF Analyzer")
121
 
122
  st.write(css, unsafe_allow_html=True)
123
 
 
126
  if "chat_history" not in st.session_state:
127
  st.session_state.chat_history = None
128
 
129
+ # st.header("Pennwick File Analyzer :books:")
130
+ st.header("Pennwick File Analyzer")
131
 
132
  user_question = st.text_input("Ask the Model a question about your uploaded documents:")
133
  if user_question: