Spaces:
Runtime error
Runtime error
Added button to force reload of trace files
Browse files
pages/040_Test_Reporter.py
CHANGED
@@ -50,6 +50,10 @@ if st_setup('LLM Arch'):
|
|
50 |
with summary:
|
51 |
st.write("# Test Reporter")
|
52 |
TestGroup.load_all()
|
|
|
|
|
|
|
|
|
53 |
selector, display = st.columns([2, 3])
|
54 |
|
55 |
with selector:
|
|
|
50 |
with summary:
|
51 |
st.write("# Test Reporter")
|
52 |
TestGroup.load_all()
|
53 |
+
if st.button("Reload traces"):
|
54 |
+
TestGroup.load_all(True)
|
55 |
+
st.rerun()
|
56 |
+
|
57 |
selector, display = st.columns([2, 3])
|
58 |
|
59 |
with selector:
|