Chris4K commited on
Commit
f39e988
·
verified ·
1 Parent(s): cc5b3b8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -23,8 +23,11 @@ agent_config = AgentConfig()
23
  def on_close():
24
  print("The modal was closed!")
25
 
 
26
  def open_modal():
27
- st.modal("User Guide", "Hello world")
 
 
28
  # Define a callback function that will be called when the button is clicked
29
  #def open_modal():
30
  # st.modal("User Guide", app_user_desc())
@@ -37,10 +40,6 @@ import pandas as pd
37
  from io import StringIO
38
  with st.sidebar:
39
 
40
- def open_modal():
41
- st.modal("User Guide", app_user_desc())
42
-
43
- st.button("User Description", open_modal)
44
 
45
  st.header("Set Tools and Option. ")
46
 
 
23
  def on_close():
24
  print("The modal was closed!")
25
 
26
+
27
  def open_modal():
28
+ st.modal("User Guide", "app_user_desc()")
29
+
30
+ st.button("User Description", open_modal)
31
  # Define a callback function that will be called when the button is clicked
32
  #def open_modal():
33
  # st.modal("User Guide", app_user_desc())
 
40
  from io import StringIO
41
  with st.sidebar:
42
 
 
 
 
 
43
 
44
  st.header("Set Tools and Option. ")
45