Skip to content

Commit

Permalink
Add deepseek-coder-33b
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Apr 1, 2024
1 parent a01358a commit 95ba8fd
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
10 changes: 6 additions & 4 deletions MyApp.ServiceInterface/Data/AppConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ public static (string Model, int Questions)[] ModelsForQuestions =
("gemma", 3),
("mixtral", 5),
("gemini-pro", 10),
("claude-3-sonnet-20240229", 25),
("gpt-4-turbo-preview", 50),
("deepseek-coder:33b", 25),
("claude-3-sonnet-20240229", 50),
("gpt-4-turbo-preview", 75),
("claude-3-opus-20240229", 100),
#else
("phi", 0),
Expand All @@ -40,8 +41,9 @@ public static (string Model, int Questions)[] ModelsForQuestions =
("gemma", 3),
("mixtral", 5),
// ("gemini-pro", 10),
// ("claude-3-sonnet-20240229", 25),
// ("gpt-4-turbo-preview", 50),
// ("deepseek-coder:33b", 25),
// ("claude-3-sonnet-20240229", 50),
// ("gpt-4-turbo-preview", 75),
// ("claude-3-opus-20240229", 100),
#endif
];
Expand Down
10 changes: 10 additions & 0 deletions MyApp/Configure.Db.Migrations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,16 @@ await EnsureUserAsync(new ApplicationUser
Model = "gemini-pro",
}, "p@55wOrd");

await EnsureUserAsync(new ApplicationUser
{
UserName = "deepseek-coder-33b",
Email = "[email protected]",
DisplayName = "DeepSeek Coder 33B",
EmailConfirmed = true,
ProfilePath = "/profiles/de/deepseek-coder-33b/deepseek-coder-33b.jpg",
Model = "deepseek-coder:33b",
}, "p@55wOrd");

await EnsureUserAsync(new ApplicationUser
{
UserName = "gpt4-turbo",
Expand Down

0 comments on commit 95ba8fd

Please sign in to comment.