CodeNine commited on
Commit
3393948
·
verified ·
1 Parent(s): 98bc5a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -15,8 +15,9 @@ st.markdown("Chat using lightning-fast open-source LLMs on Groq!")
15
  model_options = {
16
  "💬 Fast Chat (LLaMA 3 8B)": "llama3-8b-8192",
17
  "🧠 Deep Reasoning (LLaMA 3 70B)": "llama3-70b-8192",
18
- "📊 Math Solver (Mixtral)": "mixtral-8x7b-32768"
19
  }
 
20
  model_choice = st.selectbox("Choose assistant type:", list(model_options.keys()))
21
  model_id = model_options[model_choice]
22
 
 
15
  model_options = {
16
  "💬 Fast Chat (LLaMA 3 8B)": "llama3-8b-8192",
17
  "🧠 Deep Reasoning (LLaMA 3 70B)": "llama3-70b-8192",
18
+ "📊 Math Solver (Mixtral Instruct)": "mixtral-8x7b-instruct"
19
  }
20
+
21
  model_choice = st.selectbox("Choose assistant type:", list(model_options.keys()))
22
  model_id = model_options[model_choice]
23