Update app.py
Browse files
app.py
CHANGED
@@ -30,6 +30,10 @@ with st.sidebar:
|
|
30 |
def load_model(selected_model):
|
31 |
if selected_model == "Qwen":
|
32 |
model_id = "amiguel/GM_Qwen1.8B_Finetune"
|
|
|
|
|
|
|
|
|
33 |
else:
|
34 |
model_id = "amiguel/GM_Mistral7B_Finetune"
|
35 |
|
|
|
30 |
def load_model(selected_model):
|
31 |
if selected_model == "Qwen":
|
32 |
model_id = "amiguel/GM_Qwen1.8B_Finetune"
|
33 |
+
|
34 |
+
elif selected_model == "Llama"
|
35 |
+
model_id = "amiguel/Llama3_8B_Instruct_FP16"
|
36 |
+
|
37 |
else:
|
38 |
model_id = "amiguel/GM_Mistral7B_Finetune"
|
39 |
|