From 07674781bb6e7b9cd8a0f0b42e3e7874608948e0 Mon Sep 17 00:00:00 2001 From: pliny <133052465+elder-plinius@users.noreply.github.com> Date: Fri, 17 Nov 2023 17:21:51 -0800 Subject: [PATCH] Update autotemp.py --- autotemp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotemp.py b/autotemp.py index eb969ca..4723ac9 100644 --- a/autotemp.py +++ b/autotemp.py @@ -63,7 +63,7 @@ class AutoTemp: {output} --- """ - score_text = self.generate_with_openai(eval_prompt, 0.5, fixed_top_p_for_evaluation) + score_text = self.generate_with_openai(eval_prompt, 0.69, fixed_top_p_for_evaluation) score_match = re.search(r'\b\d+(\.\d)?\b', score_text) if score_match: return round(float(score_match.group()), 1) # Round the score to one decimal place