alfraser commited on
Commit
f89cac3
1 Parent(s): 16386a3

Moved the trace reload behind the admin screen and login

Browse files
pages/040_Test_Reporter.py CHANGED
@@ -92,10 +92,8 @@ if st_setup('LLM Arch'):
92
  summary = st.container()
93
  with summary:
94
  st.write("# Test Reporter")
 
95
  TestGroup.load_all()
96
- if st.button("Reload traces"):
97
- TestGroup.load_all(True)
98
- st.rerun()
99
 
100
  selector, display = st.columns([2, 3])
101
 
 
92
  summary = st.container()
93
  with summary:
94
  st.write("# Test Reporter")
95
+
96
  TestGroup.load_all()
 
 
 
97
 
98
  selector, display = st.columns([2, 3])
99
 
pages/900_System_Status.py CHANGED
@@ -4,7 +4,7 @@ from time import sleep
4
  from src.st_helpers import st_setup
5
  from src.common import *
6
  from src.architectures import Architecture
7
-
8
 
9
 
10
  if st_setup('LLM Arch'):
@@ -26,6 +26,11 @@ if st_setup('LLM Arch'):
26
 
27
  st.divider()
28
 
 
 
 
 
 
29
  st.write("## HF Inference Endpoint Statuses")
30
  st.write("The following endpoints need to be running to run all the demonstrations.")
31
 
 
4
  from src.st_helpers import st_setup
5
  from src.common import *
6
  from src.architectures import Architecture
7
+ from src.testing import TestGroup
8
 
9
 
10
  if st_setup('LLM Arch'):
 
26
 
27
  st.divider()
28
 
29
+ if st.button("Reload traces"):
30
+ TestGroup.load_all(True)
31
+
32
+ st.divider()
33
+
34
  st.write("## HF Inference Endpoint Statuses")
35
  st.write("The following endpoints need to be running to run all the demonstrations.")
36