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
2 changed files
with
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,6 +162,22 @@ public async Task Recreate_answers_for_Top1K_questions_for_sonnet3_5() | |
apiCreate.Response!.Results.PrintDump();; | ||
} | ||
|
||
[Test] | ||
public async Task Recreate_answers_for_Top1K_questions_for_gpt4o_mini() | ||
{ | ||
var client = await TestUtils.CreateAuthenticatedProdClientAsync(); | ||
var apiCreate = await client.ApiAsync(new CreateAnswersForModels | ||
{ | ||
Models = ["gpt-4o-mini"], | ||
PostIds = Migration1005.Top1KIds, | ||
}); | ||
|
||
apiCreate.Error.PrintDump(); | ||
apiCreate.ThrowIfError(); | ||
apiCreate.Response!.Errors.PrintDump(); | ||
apiCreate.Response!.Results.PrintDump();; | ||
} | ||
|
||
[Test] | ||
public async Task Find_answers_that_have_not_been_individually_graded() | ||
{ | ||
|
@@ -225,6 +241,23 @@ public async Task Create_Gemini_Pro_15_User() | |
api.ThrowIfError(); | ||
} | ||
|
||
[Test] | ||
public async Task Create_Mistral_Nemo_User() | ||
{ | ||
// var client = await TestUtils.CreateAdminDevClientAsync(); | ||
var client = await TestUtils.CreateAdminProdClientAsync(); | ||
var api = await client.ApiAsync(new AdminCreateUser | ||
{ | ||
UserName = "mistral-nemo", | ||
Email = "[email protected]", | ||
DisplayName = "Mistral NeMo", | ||
ProfileUrl = "/profiles/mi/mistral-nemo/mistral-nemo.svg", | ||
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 |
---|---|---|
|
@@ -233,6 +233,16 @@ await EnsureUserAsync(new ApplicationUser | |
Model = "mistral", //7B | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "mistral-nemo", | ||
Email = "[email protected]", | ||
DisplayName = "Mistral NeMo", | ||
EmailConfirmed = true, | ||
ProfilePath = "/profiles/mi/mistral-nemo/mistral-nemo.svg", | ||
Model = "mistral-nemo", //12 | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "mixtral", | ||
|