Skip to content

Commit

Permalink
πŸ› fix(createAnalysis.ts): update decrement value for GPT_4 model to 5…
Browse files Browse the repository at this point in the history
… to improve accuracy in analysis
  • Loading branch information
romantech committed Aug 27, 2023
1 parent bf25fb9 commit 32455d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/analyzer/createAnalysis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const createAnalysis = [
];

const getDecrementValue = (model: GPTModel) => {
const DECREMENT_VALUES = { [GPTModels.GPT_4]: 3, [GPTModels.GPT_3]: 1 };
const DECREMENT_VALUES = { [GPTModels.GPT_4]: 5, [GPTModels.GPT_3]: 1 };
return DECREMENT_VALUES[model];
};

Expand Down

0 comments on commit 32455d5

Please sign in to comment.