Update app.py
Browse files
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-
|
| 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 |
|