@@ -38,6 +38,22 @@ public static class KnownModels
3838 DownloadUrl = string . Empty ,
3939 } ,
4040 new Model ( )
41+ {
42+ Description = string . Empty ,
43+ Name = KnownModelNames . Qwen3_8b ,
44+ FileName = "Qwen3-8b.gguf" ,
45+ DownloadUrl = string . Empty ,
46+ ReasonFunction = ReasoningFunctions . ProcessDeepSeekToken
47+ } ,
48+ new Model ( )
49+ {
50+ Description = string . Empty ,
51+ Name = KnownModelNames . Qwen3_14b ,
52+ FileName = "Qwen3-14b.gguf" ,
53+ DownloadUrl = string . Empty ,
54+ ReasonFunction = ReasoningFunctions . ProcessDeepSeekToken
55+ } ,
56+ new Model ( )
4157 {
4258 Description = string . Empty ,
4359 Name = KnownModelNames . OlympicCoder_7b ,
@@ -108,6 +124,20 @@ public static class KnownModels
108124 DownloadUrl = string . Empty
109125 } ,
110126 new Model ( )
127+ {
128+ Description = string . Empty ,
129+ Name = KnownModelNames . Phi3_5_3b ,
130+ FileName = "phi3.5-3b.gguf" ,
131+ DownloadUrl = string . Empty
132+ } ,
133+ new Model ( )
134+ {
135+ Description = string . Empty ,
136+ Name = KnownModelNames . Phi4_4b ,
137+ FileName = "phi4-4b.gguf" ,
138+ DownloadUrl = string . Empty
139+ } ,
140+ new Model ( )
111141 {
112142 Description = string . Empty ,
113143 Name = KnownModelNames . DeepSeek_R1_8b ,
@@ -247,7 +277,11 @@ public struct KnownModelNames
247277 public const string DeepSeek_R1_8b = "deepseekR1:8b" ;
248278 public const string DeepSeek_R1_1_5b = "deepseekR1:1.5b" ;
249279 public const string QwQ_7b = "qwq:7b" ;
280+ public const string Qwen3_8b = "qwen3:8b" ;
281+ public const string Qwen3_14b = "qwen3:14b" ;
250282 public const string Olmo2_7b = "olmo2:7b" ;
283+ public const string Phi3_5_3b = "phi3.5:3b" ;
284+ public const string Phi4_4b = "phi4:4b" ;
251285 public const string Smollm2_0_1b = "smollm2:0.1b" ;
252286 public const string Yi_6b = "yi:6b" ;
253287
0 commit comments