Spaces:
Running
Running
Update ui.py
Browse files
ui.py
CHANGED
@@ -131,9 +131,11 @@ def APP():
|
|
131 |
# Clear cache if force_refresh is True
|
132 |
if force_refresh and 'ops_cache' in st.session_state:
|
133 |
del st.session_state.ops_cache
|
|
|
|
|
134 |
|
135 |
response = requests.get(
|
136 |
-
|
137 |
headers={
|
138 |
"Content-Type": "application/json",
|
139 |
"Authorization": f"Bearer {tok}",
|
|
|
131 |
# Clear cache if force_refresh is True
|
132 |
if force_refresh and 'ops_cache' in st.session_state:
|
133 |
del st.session_state.ops_cache
|
134 |
+
|
135 |
+
fetch_url=f"/{st.user.email}/{st.session_state.projectname}/individual/experiment"
|
136 |
|
137 |
response = requests.get(
|
138 |
+
fetch_url,
|
139 |
headers={
|
140 |
"Content-Type": "application/json",
|
141 |
"Authorization": f"Bearer {tok}",
|