alfraser commited on
Commit
5044033
·
1 Parent(s): 33a5067

Added a new placeholder page for basic reporting

Browse files
Files changed (1) hide show
  1. pages/040_Test_Reporter.py +9 -0
pages/040_Test_Reporter.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ from src.st_helpers import st_setup
4
+
5
+ if st_setup('LLM Arch'):
6
+ summary = st.container()
7
+ with summary:
8
+ st.write("# Test Reporter")
9
+ st.info("Just a placeholder for now - need to implement the end user test suite selection and reporting")