Skip to content

Commit

Permalink
🐛 fix(createAnalysis.ts): increase temperature value from 0.4 to 0.6 …
Browse files Browse the repository at this point in the history
…to generate more diverse and creative analysis responses
  • Loading branch information
romantech committed Aug 27, 2023
1 parent 32455d5 commit 1872f6d
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 @@ -58,6 +58,6 @@ const fetchAnalysisFromOpenAI = async (
{ role: 'system', content: prompt },
{ role: 'user', content: JSON.stringify(sentence) },
],
temperature: 0.4,
temperature: 0.6,
});
};

0 comments on commit 1872f6d

Please sign in to comment.