simocimolato commited on
Commit
fcf7a3a
·
verified ·
1 Parent(s): 22844e9

synthesis model is now gpt-4.1-mini, it's cheaper and better than 4o-mini

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -116,7 +116,7 @@ with st.sidebar:
116
 
117
  st.session_state.expert_model = st.selectbox(
118
  "Choose the LLM model",
119
- ["LLaMA-TOMMI-1.0-11B", "LLaMA-3.2-11B", "gpt-4o-mini"],
120
  index=0,
121
  key='a1model'
122
  )
@@ -142,7 +142,7 @@ with st.sidebar:
142
  show_yt_context = st.toggle("Show retrieved video content", value=False)
143
  st.session_state.synthesis_model = st.selectbox(
144
  "Choose the LLM model",
145
- ["LLaMA-3.2-3B","gpt-4o-mini", "gpt-4.1-mini", "gpt-4.1-nano"], # "LLaMA-3.2-11B",
146
  index=1,
147
  key='a2model'
148
  )
 
116
 
117
  st.session_state.expert_model = st.selectbox(
118
  "Choose the LLM model",
119
+ ["LLaMA-TOMMI-1.0-11B", "LLaMA-3.2-11B", "gpt-4.1-mini"],
120
  index=0,
121
  key='a1model'
122
  )
 
142
  show_yt_context = st.toggle("Show retrieved video content", value=False)
143
  st.session_state.synthesis_model = st.selectbox(
144
  "Choose the LLM model",
145
+ ["LLaMA-3.2-3B", "gpt-4.1-mini"], # "LLaMA-3.2-11B",
146
  index=1,
147
  key='a2model'
148
  )