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
1 changed file
with
32 additions
and
23 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 |
---|---|---|
|
@@ -90,12 +90,21 @@ await EnsureUserAsync(new ApplicationUser | |
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "human", | ||
Email = "human@email.com", | ||
DisplayName = "Human", | ||
UserName = "most-voted", | ||
Email = "most-voted@email.com", | ||
DisplayName = "Most Voted", | ||
EmailConfirmed = true, | ||
ProfilePath = "/profiles/hu/human.svg", | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "accepted", | ||
Email = "[email protected]", | ||
DisplayName = "Accepted", | ||
EmailConfirmed = true, | ||
ProfilePath = "/profiles/hu/human-accepted.svg", | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
|
@@ -119,12 +128,22 @@ await EnsureUserAsync(new ApplicationUser | |
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "starcoder2-3b", | ||
Email = "starcoder2-3b@email.com", | ||
DisplayName = "StarCoder2 3B", | ||
UserName = "qwen-4b", | ||
Email = "qwen@email.com", | ||
DisplayName = "Qwen 1.5", | ||
EmailConfirmed = true, | ||
ProfilePath = "/profiles/st/starcoder-3b.png", | ||
Model = "starcoder2:3b", //3B | ||
ProfilePath = "/profiles/qw/qwen.svg", | ||
Model = "qwen:4b", //4B | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "codellama", | ||
Email = "[email protected]", | ||
DisplayName = "Code Llama 7B", | ||
EmailConfirmed = true, | ||
ProfilePath = "/profiles/co/codellama.svg", | ||
Model = "codellama", //7B | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
|
@@ -139,12 +158,12 @@ await EnsureUserAsync(new ApplicationUser | |
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "codellama", | ||
Email = "codellama-13B@email.com", | ||
DisplayName = "Code Llama 7B", | ||
UserName = "deepseek-coder", | ||
Email = "deepseek-coder@email.com", | ||
DisplayName = "DeepSeek Coder 6.7b", | ||
EmailConfirmed = true, | ||
ProfilePath = "/profiles/co/codellama.svg", | ||
Model = "codellama", //7B | ||
ProfilePath = "/profiles/de/deepseek-coder.jpg", | ||
Model = "deepseek-coder:6.7b", //16B | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
|
@@ -157,16 +176,6 @@ await EnsureUserAsync(new ApplicationUser | |
Model = "mistral", //7B | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "starcoder2-15b", | ||
Email = "[email protected]", | ||
DisplayName = "StarCoder2 15B", | ||
EmailConfirmed = true, | ||
ProfilePath = "/profiles/st/starcoder2-15b.png", | ||
Model = "starcoder2:15b", //16B | ||
}, "p@55wOrd"); | ||
|
||
await EnsureUserAsync(new ApplicationUser | ||
{ | ||
UserName = "mixtral", | ||
|