Skip to content

Commit

Permalink
Add Seed Users
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Jul 15, 2024
1 parent c82de23 commit 197646b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions MyApp/Configure.Db.Migrations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,16 @@ await EnsureUserAsync(new ApplicationUser
Model = "gemma", //7B
}, "p@55wOrd");

await EnsureUserAsync(new ApplicationUser
{
UserName = "gemma2-27b",
Email = "servicestack.mail+gemma@gmail.com",
DisplayName = "Gemma2 27B",
EmailConfirmed = true,
ProfilePath = "/profiles/ge/gemma2-27b/gemma2-27b.svg",
Model = "gemma2:27b", //27B
}, "p@55wOrd");

await EnsureUserAsync(new ApplicationUser
{
UserName = "deepseek-coder",
Expand Down Expand Up @@ -293,6 +303,16 @@ await EnsureUserAsync(new ApplicationUser
Model = "claude-3-sonnet",
}, "p@55wOrd");

await EnsureUserAsync(new ApplicationUser
{
UserName = "claude3-5-sonnet",
Email = "servicestack.mail+claude3-sonnet@gmail.com",
DisplayName = "Claude 3.5 Sonnet",
EmailConfirmed = true,
ProfilePath = "/profiles/cl/claude3-5-sonnet/claude3-5-sonnet.svg",
Model = "claude-3-5-sonnet",
}, "p@55wOrd");

await EnsureUserAsync(new ApplicationUser
{
UserName = "claude3-opus",
Expand Down

0 comments on commit 197646b

Please sign in to comment.