Spaces:
Running
Running
:sparkles: include Qwen2.5-72B
Browse files- app.py +5 -1
- readme-generator/generate.sh +1 -0
app.py
CHANGED
@@ -86,12 +86,16 @@ def build_model_choices():
|
|
86 |
model_id = "mattshumer/Reflection-Llama-3.1-70B"
|
87 |
all_choices += [(f"{model_id} ({model_class})", model_id)]
|
88 |
|
|
|
|
|
|
|
|
|
89 |
return all_choices
|
90 |
|
91 |
model_choices = build_model_choices()
|
92 |
|
93 |
def initial_model(referer=None):
|
94 |
-
return "
|
95 |
|
96 |
# if referer == 'http://127.0.0.1:7860/':
|
97 |
# return 'Sao10K/Venomia-1.1-m7'
|
|
|
86 |
model_id = "mattshumer/Reflection-Llama-3.1-70B"
|
87 |
all_choices += [(f"{model_id} ({model_class})", model_id)]
|
88 |
|
89 |
+
model_class = "qwen2-72b"
|
90 |
+
model_id = "Qwen/Qwen2.5-72B"
|
91 |
+
all_choices += [(f"{model_id} ({model_class})", model_id)]
|
92 |
+
|
93 |
return all_choices
|
94 |
|
95 |
model_choices = build_model_choices()
|
96 |
|
97 |
def initial_model(referer=None):
|
98 |
+
return "Qwen/Qwen2.5-72B"
|
99 |
|
100 |
# if referer == 'http://127.0.0.1:7860/':
|
101 |
# return 'Sao10K/Venomia-1.1-m7'
|
readme-generator/generate.sh
CHANGED
@@ -19,6 +19,7 @@ $(cat ../model-cache.json \
|
|
19 |
const yamlStr = YAML.stringify(json);
|
20 |
console.log(yamlStr);"
|
21 |
)
|
|
|
22 |
- mattshumer/Reflection-Llama-3.1-70B
|
23 |
---
|
24 |
|
|
|
19 |
const yamlStr = YAML.stringify(json);
|
20 |
console.log(yamlStr);"
|
21 |
)
|
22 |
+
- Qwen/Qwen2.5-72B
|
23 |
- mattshumer/Reflection-Llama-3.1-70B
|
24 |
---
|
25 |
|