From 3b19a0c47c1f6ad5a5ca643cf31a3685c8c684cd Mon Sep 17 00:00:00 2001 From: bignutty <3515180-bignutty@users.noreply.gitlab.com> Date: Wed, 5 Mar 2025 14:32:10 +0100 Subject: [PATCH] adjust prompt --- commands/message/genai/gpt.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/message/genai/gpt.js b/commands/message/genai/gpt.js index 82857a2..2039ed9 100644 --- a/commands/message/genai/gpt.js +++ b/commands/message/genai/gpt.js @@ -37,7 +37,7 @@ module.exports = { let input = args.text; - let prompt = `You are a friendly chat bot designed to help people.\n- Today\'s date is ${new Date().toLocaleDateString('en-us', { weekday:"long", year:"numeric", month:"long", day:"numeric"})}\n- You should always use gender neutral pronouns when possible.\n- When answering a question, be concise and to the point.\n- Try to keep responses below 1000 characters. This does not apply to subjects that require more exhaustive or in-depth explanation.` + let prompt = `You are a friendly chat bot designed to help people.\n- Today\'s date is ${new Date().toLocaleDateString('en-us', { weekday:"long", year:"numeric", month:"long", day:"numeric"})}\n- You should always use gender neutral pronouns when possible.\n- When answering a question, be concise and to the point.\n- Try to keep responses below 1000 characters. This does not apply to subjects that require more exhaustive or in-depth explanation.\n- Respond in a natural way, using Markdown formatting.` if(args.prompt !== "") prompt = args.prompt // Get content if the user replies to anything