Spaces:
Running
Running
Update ui.py
Browse files
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 |
-
|
100 |
|
101 |
|
102 |
|
@@ -114,7 +114,7 @@ def APP():
|
|
114 |
|
115 |
payload={
|
116 |
"uid":st.user.email ,
|
117 |
-
"pid":
|
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 |
}
|