Spaces:
Runtime error
Runtime error
Added a new placeholder page for basic reporting
Browse files
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")
|