RajaThor commited on
Commit
63d75a8
·
verified ·
1 Parent(s): d78cc8d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -232,27 +232,26 @@ def delete_person_ui():
232
  result = delete_person(name)
233
  st.success(result)
234
 
235
- # Function to display tour steps
236
  def tour_guide_ui():
237
  st.title("Tour Guide")
238
  st.markdown("This tour will guide you through the application.")
239
 
240
- with st.beta_expander("Welcome"):
241
  st.write("This is a tour guide to help you navigate through the application.")
242
 
243
- with st.beta_expander("Options Sidebar"):
244
  st.write("Here you can select different options such as adding a person, recognizing a face, deleting a person, or recognizing a face with optimal identification.")
245
 
246
- with st.beta_expander("Main Interface"):
247
  st.write("This is where the main functionality of the application is displayed.")
248
 
249
- with st.beta_expander("Upload Image"):
250
  st.write("You can upload an image here for face recognition or adding a person.")
251
 
252
- with st.beta_expander("Text Input"):
253
  st.write("Enter text here such as the person's name or Instagram handle.")
254
 
255
- with st.beta_expander("Buttons"):
256
  st.write("Click on these buttons to perform actions like adding a person or recognizing a face.")
257
 
258
  # Streamlit interface for user authentication
 
232
  result = delete_person(name)
233
  st.success(result)
234
 
 
235
  def tour_guide_ui():
236
  st.title("Tour Guide")
237
  st.markdown("This tour will guide you through the application.")
238
 
239
+ with st.expander("Welcome"):
240
  st.write("This is a tour guide to help you navigate through the application.")
241
 
242
+ with st.expander("Options Sidebar"):
243
  st.write("Here you can select different options such as adding a person, recognizing a face, deleting a person, or recognizing a face with optimal identification.")
244
 
245
+ with st.expander("Main Interface"):
246
  st.write("This is where the main functionality of the application is displayed.")
247
 
248
+ with st.expander("Upload Image"):
249
  st.write("You can upload an image here for face recognition or adding a person.")
250
 
251
+ with st.expander("Text Input"):
252
  st.write("Enter text here such as the person's name or Instagram handle.")
253
 
254
+ with st.expander("Buttons"):
255
  st.write("Click on these buttons to perform actions like adding a person or recognizing a face.")
256
 
257
  # Streamlit interface for user authentication