Elfsong commited on
Commit
8bc1087
·
1 Parent(s): ee73d74
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -55,7 +55,7 @@ if "problem" in st.query_params:
55
 
56
 
57
  else:
58
- tab_problem, tab_submission, tab_model = st.tabs(["Problems", "Submissions", "Models"])
59
 
60
  with tab_problem:
61
  with st.spinner("Loading Framework...", show_time=True):
@@ -131,3 +131,8 @@ else:
131
  column_order=("model_name", "Dynamic Point", "pass@1", "beyond@t", "beyond@m", "model_progress"),
132
  height=800,
133
  )
 
 
 
 
 
 
55
 
56
 
57
  else:
58
+ tab_problem, tab_submission, tab_model, tab_about = st.tabs(["Problems", "Submissions", "Models", "About"])
59
 
60
  with tab_problem:
61
  with st.spinner("Loading Framework...", show_time=True):
 
131
  column_order=("model_name", "Dynamic Point", "pass@1", "beyond@t", "beyond@m", "model_progress"),
132
  height=800,
133
  )
134
+
135
+ with tab_about:
136
+ st.write("Hello World!")
137
+ st.write("This is the new version of Code Arena. Refer to [Monolith](https://github.com/Elfsong/Monolith) for instructions on how to submit code.")
138
+