From 5527363a8902eedb97e76bea6d9a7c356b28cef2 Mon Sep 17 00:00:00 2001 From: QuantumChemist Date: Thu, 26 Sep 2024 00:33:48 +0200 Subject: [PATCH] changed ascii_art promt --- bot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index c357181..5739813 100755 --- a/bot.py +++ b/bot.py @@ -437,7 +437,8 @@ async def asciiart(self, interaction: discord.Interaction, message: str = None): # Construct the text for the LLM request - text = f"Hello OpenGLaDOS, ALWAYS provide an ASCII art code snippet for: {message}." + text = f"Hello OpenGLaDOS, ALWAYS provide an ASCII art code snippet for: {message}. \n" + f"And give a very very short mockery and sarcastic comment on your request and its message content: {message}." try: llm_answer = get_groq_completion( [{"role": "assistant", "content": text}])