diff --git a/bot.py b/bot.py index bc62173..a9ce145 100755 --- a/bot.py +++ b/bot.py @@ -36,7 +36,7 @@ async def ask_gpt(ctx, *, question: str): # Send the question to GPT-4o using the new OpenAI API response = await aclient.chat.completions.create(model="gpt-4o", messages=[ - {"role": "system", "content": "You are a helpful assistant. You exist inside a discord server"}, + {"role": "system", "content": "You are a helpful assistant. You exist inside a discord server. There is a character limit so please keep responses brief if possible."}, {"role": "user", "content": question} ]) answer = response.choices[0].message.content.strip()