From 74cfe1c3db60d45f70434acf0ddc78768a4ec626 Mon Sep 17 00:00:00 2001 From: Josh Mandel Date: Wed, 24 May 2023 16:35:58 -0700 Subject: [PATCH] temp=0 when posting to linkedin --- PodcastSocialMediaCopilot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PodcastSocialMediaCopilot.py b/PodcastSocialMediaCopilot.py index f8ace2d..3e117ec 100644 --- a/PodcastSocialMediaCopilot.py +++ b/PodcastSocialMediaCopilot.py @@ -290,7 +290,7 @@ def bing_grounding(input_dict:dict) -> dict: payload = { "messages": PROMPT_MESSAGES, "max_tokens": 1024, - "temperature": 0.5, + "temperature": 0.0, "n": 1, "stop": None }