Skip to content

Commit 289a185

Browse files
committed
add qwq, qwen 2.5 72b to deprecated models
1 parent 53e0c4d commit 289a185

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

MyApp.ServiceInterface/Data/AppConfig.cs

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ public JsonApiClient CreateAiServerClient()
6565
public HashSet<string> AllTags { get; set; } = [];
6666
public List<ApplicationUser> ModelUsers { get; set; } = [];
6767

68-
public static string[] DeprecatedModels = ["deepseek-coder","gemma-2b","qwen-4b","deepseek-coder-33b","deepseek-coder2-236b","mistral","llama3-8b","phi","codellama","llama3.1-8b","gemma2-27b","qwen2-72b","command-r","command-r-plus"];
69-
7068
public static (string Model, int Questions)[] GetActiveModelsForQuestions(int questionsCount) =>
7169
ModelsForQuestions.Where(x => questionsCount >= x.Questions && !DeprecatedModels.Contains(x.Model)).ToArray();
7270

@@ -104,6 +102,25 @@ public static (string Model, int Questions)[] ModelsForQuestions =
104102
("gpt4-turbo", 250),
105103
];
106104

105+
public static string[] DeprecatedModels = [
106+
"deepseek-coder",
107+
"gemma-2b",
108+
"qwen-4b",
109+
"deepseek-coder-33b",
110+
"deepseek-coder2-236b",
111+
"mistral",
112+
"llama3-8b",
113+
"phi",
114+
"codellama",
115+
"llama3.1-8b",
116+
"gemma2-27b",
117+
"qwen2-72b",
118+
"command-r",
119+
"command-r-plus",
120+
"qwq-32b",
121+
"qwen2.5-72b",
122+
];
123+
107124
public static int[] QuestionLevels = ModelsForQuestions.Select(x => x.Questions).Distinct().OrderBy(x => x).ToArray();
108125

109126
public void LoadTags(FileInfo allTagsFile)

0 commit comments

Comments
 (0)