Junaidb commited on
Commit
1ef2976
·
verified ·
1 Parent(s): 8d6695b

Update ui.py

Browse files
Files changed (1) hide show
  1. ui.py +3 -3
ui.py CHANGED
@@ -68,7 +68,7 @@ def APP():
68
 
69
  with st.form("bio",border=False):
70
 
71
- project_name=None
72
 
73
 
74
 
@@ -96,7 +96,7 @@ def APP():
96
 
97
  if projectname == "":
98
  with st.expander("Set up the project before proceeding."):
99
- project_name = st.text_input("Provide project name > ")
100
 
101
 
102
 
@@ -114,7 +114,7 @@ def APP():
114
 
115
  payload={
116
  "uid":st.user.email ,
117
- "pid":project_name or projectname,
118
  "target":Target_Identification(bio_input) or None,
119
  "high_level_bio_query":bio_input
120
  }
 
68
 
69
  with st.form("bio",border=False):
70
 
71
+ #project_name=None
72
 
73
 
74
 
 
96
 
97
  if projectname == "":
98
  with st.expander("Set up the project before proceeding."):
99
+ projectname = st.text_input("Provide project name > ")
100
 
101
 
102
 
 
114
 
115
  payload={
116
  "uid":st.user.email ,
117
+ "pid":projectname,
118
  "target":Target_Identification(bio_input) or None,
119
  "high_level_bio_query":bio_input
120
  }