weiqiangntufyp commited on
Commit
aafb1d7
Β·
verified Β·
1 Parent(s): 10d627a

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -1050,7 +1050,7 @@ with st.sidebar:
1050
  model_choice = st.selectbox("Model A (primary):", MODEL_LIST, key="model_a_select")
1051
 
1052
  st.divider()
1053
- st.markdown("**A/B A/B Test Mode**")
1054
  ab_mode = st.toggle("Enable A/B comparison", value=False, key="ab_toggle")
1055
  if ab_mode:
1056
  st.caption("Runs 2 models in parallel. A meta-LLM then judges which is stronger.")
@@ -1352,7 +1352,7 @@ if mode == "1. Master Form":
1352
  st.markdown("---")
1353
 
1354
  # ── SUBMIT LOGIC ──────────────────────────────────────────────────────────
1355
- btn_label = "A/B Run A/B Test" if ab_mode else " Generate & Analyze with AI"
1356
  if st.button(btn_label, type="primary"):
1357
 
1358
  final_fac = fac_select + custom_facs
 
1050
  model_choice = st.selectbox("Model A (primary):", MODEL_LIST, key="model_a_select")
1051
 
1052
  st.divider()
1053
+ st.markdown("**A/B Test Mode**")
1054
  ab_mode = st.toggle("Enable A/B comparison", value=False, key="ab_toggle")
1055
  if ab_mode:
1056
  st.caption("Runs 2 models in parallel. A meta-LLM then judges which is stronger.")
 
1352
  st.markdown("---")
1353
 
1354
  # ── SUBMIT LOGIC ──────────────────────────────────────────────────────────
1355
+ btn_label = "Run A/B Test" if ab_mode else " Generate & Analyze with AI"
1356
  if st.button(btn_label, type="primary"):
1357
 
1358
  final_fac = fac_select + custom_facs