generated from NetCoreTemplates/blazor-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -245,6 +245,28 @@ public async Task Create_Mistral_Nemo_User() | |
api.ThrowIfError(); | ||
} | ||
|
||
[Test] | ||
public async Task Create_DeepSeek236B_User() | ||
{ | ||
// var client = await TestUtils.CreateAdminDevClientAsync(); | ||
var client = await TestUtils.CreateAdminProdClientAsync(); | ||
var api = await client.ApiAsync(new AdminCreateUser | ||
{ | ||
UserName = "deepseek-coder2-236b", | ||
DisplayName = "DeepSeek Coder2 236B", | ||
Email = "[email protected]", | ||
UserAuthProperties = new() | ||
{ | ||
[nameof(ApplicationUser.Model)] = "deepseek-coder-v2:236b", | ||
[nameof(ApplicationUser.DisplayName)] = "DeepSeek Coder2 236B", | ||
[nameof(ApplicationUser.ProfilePath)] = "/profiles/de/deepseek-coder2-236b/deepseek-coder2-236b.jpg", | ||
}, | ||
Password = Environment.GetEnvironmentVariable("AUTH_SECRET"), | ||
}); | ||
api.Response.PrintDump(); | ||
api.ThrowIfError(); | ||
} | ||
|
||
[Test] | ||
public async Task Generate_top_10k_answers_for_gemini_flash() | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -263,6 +263,16 @@ await EnsureUserAsync(new ApplicationUser | |
Model = "gemini-pro", | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "deepseek-coder2-236b", | ||
Email = "[email protected]", | ||
DisplayName = "DeepSeek Coder2 236B", | ||
EmailConfirmed = true, | ||
ProfilePath = "/profiles/de/deepseek-coder2-236b/deepseek-coder2-236b.jpg", | ||
Model = "deepseek-coder-v2:236b", | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "deepseek-coder-33b", | ||
|