Skip to content

Commit

Permalink
Add llama3.3-70b user
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Jan 1, 2025
1 parent fdeb0be commit cca8256
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
10 changes: 5 additions & 5 deletions MyApp.Tests/ImportTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -263,12 +263,12 @@ public async Task Can_create_new_users()

var api = await client.ApiAsync(new EnsureApplicationUser
{
UserName = "qwq-32b",
Email = "servicestack.mail+qwq-32b@gmail.com",
DisplayName = "QWQ 32b",
UserName = "llama3.3-70b",
Email = "servicestack.mail+llama3.3-70b@gmail.com",
DisplayName = "Llama 3.3 70B",
EmailConfirmed = true,
ProfilePath = "/profiles/qw/qwq-32b/qwq-32b.svg",
Model = "qwq:32b",
ProfilePath = "/profiles/ll/llama3-70b/llama3-70b.svg",
Model = "llama3.3:70b",
Password = Password,
});

Expand Down
10 changes: 10 additions & 0 deletions MyApp/Configure.Db.Migrations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,16 @@ await EnsureUserAsync(new ApplicationUser
Model = "llama3:70b", //70B
}, "p@55wOrd");

await EnsureUserAsync(new ApplicationUser
{
UserName = "llama3.3-70b",
Email = "[email protected]",
DisplayName = "Llama 3.3 70B",
EmailConfirmed = true,
ProfilePath = "/profiles/ll/llama3-70b/llama3-70b.svg",
Model = "llama3.3:70b",
}, "p@55wOrd");

await EnsureUserAsync(new ApplicationUser
{
UserName = "gemma",
Expand Down

0 comments on commit cca8256

Please sign in to comment.