Skip to content

Commit

Permalink
Update Configure.Db.Migrations.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Mar 19, 2024
1 parent 5198b90 commit c37b20c
Showing 1 changed file with 32 additions and 23 deletions.
55 changes: 32 additions & 23 deletions MyApp/Configure.Db.Migrations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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",
Expand Down

0 comments on commit c37b20c

Please sign in to comment.