Skip to content

Commit

Permalink
make gemini-pro free + bring down all models
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Jun 4, 2024
1 parent 6c5f7c8 commit 1081091
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions MyApp.ServiceInterface/Data/AppConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,19 +60,19 @@ public static (string Model, int Questions)[] ModelsForQuestions =
("mistral", 0),
("gemma", 0),
("llama3-8b", 0),
("gemini-pro", 3),
("mixtral", 5),
("gemini-pro", 0),
("mixtral", 3),
("gemini-flash", 5),
("gpt3.5-turbo", 10),
("gemini-flash", 25),
("claude3-haiku", 50),
("llama3-70b", 75),
("command-r", 100),
("wizardlm", 175),
("claude3-sonnet", 250),
("gemini-pro-1.5", 350),
("command-r-plus", 450),
("gpt4-turbo", 600),
("claude3-opus", 750),
("claude3-haiku", 25),
("llama3-70b", 50),
("command-r", 75),
("wizardlm", 100),
("claude3-sonnet", 175),
("gemini-pro-1.5", 250),
("command-r-plus", 350),
("gpt4-turbo", 450),
("claude3-opus", 600),
];

public static int[] QuestionLevels = ModelsForQuestions.Select(x => x.Questions).Distinct().OrderBy(x => x).ToArray();
Expand Down

0 comments on commit 1081091

Please sign in to comment.