EUNSEO56 commited on
Commit
68d0a02
·
1 Parent(s): 1fb2830

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -130,8 +130,9 @@ def handle_userinput(user_question):
130
 
131
  def main():
132
  load_dotenv()
133
- st.set_page_config(page_title="Chat with multiple Files",
134
- page_icon=":books:")
 
135
  st.write(css, unsafe_allow_html=True)
136
 
137
  if "conversation" not in st.session_state or st.session_state.conversation is None:
 
130
 
131
  def main():
132
  load_dotenv()
133
+
134
+ # set_page_config 함수는 스크립트의 처음에 호출되도록 이동
135
+ st.set_page_config(page_title="Chat with multiple Files", page_icon=":books:")
136
  st.write(css, unsafe_allow_html=True)
137
 
138
  if "conversation" not in st.session_state or st.session_state.conversation is None: