Spaces:
Sleeping
Sleeping
default mistral
Browse files- app_local.py +1 -4
app_local.py
CHANGED
@@ -88,7 +88,7 @@ description = """<p align="center">Defaults to Qwen 500M</p>
|
|
88 |
"""
|
89 |
|
90 |
# Create a shared state variable to store the selected model
|
91 |
-
selected_model = gr.State("
|
92 |
|
93 |
# Create a separate interface for model selection
|
94 |
model_selection = gr.Interface(
|
@@ -97,9 +97,6 @@ model_selection = gr.Interface(
|
|
97 |
gr.Dropdown([
|
98 |
'qwen2-0_5b-instruct-q4_k_m.gguf',
|
99 |
'mistrallite.Q4_K_M.gguf',
|
100 |
-
'zephyr_Q3_K.gguf',
|
101 |
-
'zephyr_Q3_K_M.gguf',
|
102 |
-
'zephyr_int8.gguf',
|
103 |
],
|
104 |
value="qwen2-0_5b-instruct-q4_k_m.gguf",
|
105 |
label="Model"
|
|
|
88 |
"""
|
89 |
|
90 |
# Create a shared state variable to store the selected model
|
91 |
+
selected_model = gr.State("mistrallite.Q4_K_M.gguf")
|
92 |
|
93 |
# Create a separate interface for model selection
|
94 |
model_selection = gr.Interface(
|
|
|
97 |
gr.Dropdown([
|
98 |
'qwen2-0_5b-instruct-q4_k_m.gguf',
|
99 |
'mistrallite.Q4_K_M.gguf',
|
|
|
|
|
|
|
100 |
],
|
101 |
value="qwen2-0_5b-instruct-q4_k_m.gguf",
|
102 |
label="Model"
|