Skip to content

Commit

Permalink
Update AppConfig.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Apr 2, 2024
1 parent 986d965 commit 77fbe69
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions MyApp.ServiceInterface/Data/AppConfig.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System.Collections.Concurrent;
using System.Data;
using Microsoft.EntityFrameworkCore.Metadata.Internal;
using MyApp.ServiceModel;
using ServiceStack.OrmLite;

Expand All @@ -27,10 +26,11 @@ public static (string Model, int Questions)[] ModelsForQuestions =
("gemma", 3),
("mixtral", 5),
("gemini-pro", 10),
("deepseek-coder:33b", 25),
("claude-3-sonnet-20240229", 50),
("gpt-4-turbo-preview", 75),
("claude-3-opus-20240229", 100),
("claude-3-haiku", 25),
("deepseek-coder:33b", 50),
("claude-3-sonnet", 75),
("gpt-4-turbo", 100),
("claude-3-opus", 200),
#else
("phi", 0),
("gemma:2b", 0),
Expand All @@ -41,10 +41,11 @@ public static (string Model, int Questions)[] ModelsForQuestions =
("gemma", 3),
("mixtral", 5),
// ("gemini-pro", 10),
// ("deepseek-coder:33b", 25),
// ("claude-3-sonnet-20240229", 50),
// ("gpt-4-turbo-preview", 75),
// ("claude-3-opus-20240229", 100),
// ("claude-3-haiku", 25),
// ("deepseek-coder:33b", 50),
// ("claude-3-sonnet", 75),
// ("gpt-4-turbo", 100),
// ("claude-3-opus", 200),
#endif
];

Expand Down

0 comments on commit 77fbe69

Please sign in to comment.