From f5acce0362266c965cd271cb4a1588567febe79a Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Sat, 20 Apr 2024 16:46:01 -0700 Subject: [PATCH] Not sure why i marked goon as the stop word --- app/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bot.py b/app/bot.py index ab552de5..202070dc 100755 --- a/app/bot.py +++ b/app/bot.py @@ -182,7 +182,7 @@ async def on_message(ctx): "model": llm_rules["model"], "stream": False, "max_tokens": 4096, - "stop": ["goon"], + "stop": ["hello"], "frequency_penalty": 0, "presence_penalty": 0, "temperature": 0.7,