Spaces:
Running
Running
added empty notice for see_results page
Browse files- pages/see_results.py +4 -0
pages/see_results.py
CHANGED
@@ -59,6 +59,10 @@ def main():
|
|
59 |
)
|
60 |
|
61 |
if result_select is None:
|
|
|
|
|
|
|
|
|
62 |
st.stop()
|
63 |
eval_prompt_name = result_select.split("/")[-1].strip()
|
64 |
if st.sidebar.button("Clear Cache"):
|
|
|
59 |
)
|
60 |
|
61 |
if result_select is None:
|
62 |
+
if st.session_state.korean:
|
63 |
+
st.markdown("## 결과를 확인하려면 먼저 **🔥VARCO Arena를 구동**하고 오셔야 보입니다.")
|
64 |
+
else:
|
65 |
+
st.markdown("## You should **🔥Run VARCO Arena** first to see results.")
|
66 |
st.stop()
|
67 |
eval_prompt_name = result_select.split("/")[-1].strip()
|
68 |
if st.sidebar.button("Clear Cache"):
|