devve1 commited on
Commit
85602b3
1 Parent(s): dc77bf9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -394,11 +394,11 @@ if __name__ == '__main__':
394
  )
395
  st.title('Multipurpose AI Agent')
396
  #st.markdown("<h1 style='position: fixed; top: 0; left: 0; width: 100%; padding: 10px; text-align: left; color: black;'>Multipurpose AI Agent</h1>", unsafe_allow_html=True)
 
 
 
397
 
398
  if st.session_state.menu_id == 'Documents':
399
- if 'df' not in st.session_state:
400
- st.session_state.df = pd.DataFrame([0])
401
-
402
  editable_df = st.data_editor(
403
  st.session_state.df,
404
  num_rows="dynamic",
 
394
  )
395
  st.title('Multipurpose AI Agent')
396
  #st.markdown("<h1 style='position: fixed; top: 0; left: 0; width: 100%; padding: 10px; text-align: left; color: black;'>Multipurpose AI Agent</h1>", unsafe_allow_html=True)
397
+
398
+ if 'df' not in st.session_state:
399
+ st.session_state.df = pd.DataFrame([0])
400
 
401
  if st.session_state.menu_id == 'Documents':
 
 
 
402
  editable_df = st.data_editor(
403
  st.session_state.df,
404
  num_rows="dynamic",