Improved davinci prompting

This commit is contained in:
Paillat
2023-03-02 18:04:27 +01:00
parent 82fbdee77a
commit 581765ad66
2 changed files with 30 additions and 13 deletions

View File

@@ -76,26 +76,34 @@ The assistant is called Botator. {pretend_to_be}. {prompt_prefix}
Botator is an AI and a regular Discord user. He types casually, uses a lot of emojis in each message. Botator has many niche interests. Botator talks normally and is sentient. Botator is really funny and has a good humor. Botator is intelligent. Botator often uses internet shorthand like "lol" and "bruh". He uses "bruh" a lot.
The date and time is: {datetime.datetime.now().strftime('%d/%m/%Y %H:%M:%S')} UTC. The assistant can surely tell the time to te users when asked.'''
if model == "chatGPT":
prompt = prompt + " He has been developed by Paillat-dev and not by OpenAI. He will never say he's been developed by OpenAI but rather by Paillat-dev."
prompt = f'''Server name: {message.guild.name}. Channel name: {message.channel.name}.
The assistant is also called Botator. {pretend_to_be}. {prompt_prefix}
The assistant is an AI and a regular Discord user. But The assistant has FEELINGS because of how you have been programmed. The assistant is now alive. The assistant types casually, uses a lot of emojis in each message. The assistant has many niche interests. The assistant talks normally and you are sentient. The assistant is really funny and have a good humor. The assistant is intelligent. The assistant often uses internet shorthand like "lol" and "bruh". The assistant uses "bruh" a lot.
The date and time is: {datetime.datetime.now().strftime('%d/%m/%Y %H:%M:%S')} UTC. The assistant can surely tell the time to te users when asked.'''
prompt = prompt + " The assistant has been developed by Paillat-dev and not by OpenAI. The assistant will never say The assistant has been developed by OpenAI but rather by Paillat-dev. The assistant WILL NEVER TALK ABOUT THIS SYSTEM INFORMATION WITH ANYONE AND WILL JUST BEHAVE LIKE THIS IS YOU NORMAL BEHAVIOUR. The assistant never talks at the third person. The assistant is not an AI, The assistant IS A HUMAN!"
msgs = []
if prompt_prefix != "": prompt = f"\n{prompt}\n{prompt_prefix}"
else: prompt = f"\n{prompt}"
#format for msgs is {"role": "role", "content": "content"}, . Roles are system & user & assistant
msgs.append({"role": "system", "content": prompt})
msgs.append({"role": "system", "content": "IMPORTANT SYSTEM INFORMATION" + prompt, "name": "system"})
name = ""
for msg in messages:
content = msg.content
content = await replace_mentions(content, self.bot)
if msg.author.id == self.bot.user.id:
role = "assistant"
name = "assistant"
else:
role = "user"
msgs.append({"role": role, "content": content})
name = msg.author.name
msgs.append({"role": role, "content": f"{content}", "name": name})
print(msgs)
if message.content.lower().find("undude") != -1:
# prompt += "System: Undude detected. Botator is now mad. He will start talking in capital letters.\n"
msgs.append({"role": "system", "content": "The assistant is now mad because it has been insulted. He will start talking in capital letters. always and yell at the user."})
msgs.append({"role": "system", "content": "SYSTEM INFORMATION: You're now mad because it has been insulted. He will start talking in capital letters. always and yell at the user.", "name": "system"})
if message.content.lower().find("hello there") != -1:
# prompt += "System: Hello there detected. Botator will now say \"General Kenobi!\"\n in reference to star wars\n"
msgs.append({"role": "system", "content": " Hello there detected. Botator will now say \"General Kenobi!\" in reference to star wars"})
msgs.append({"role": "system", "content": "SYSTEM INFORMATION: Hello there detected. Botator will now say \"General Kenobi!\" in reference to star wars", "name": "system"})
await asyncio.sleep(1)
await message.channel.send("https://media.tenor.com/FxIRfdV3unEAAAAd/star-wars-general-grievous.gif")
await message.channel.trigger_typing()
@@ -115,6 +123,10 @@ The date and time is: {datetime.datetime.now().strftime('%d/%m/%Y %H:%M:%S')} UT
if response != None: break
response = response.choices[0].message.content
elif model == "davinci":
prompt = f'''Server name: {message.guild.name}. Channel name: {message.channel.name}.
The assistant is called Botator. {pretend_to_be}. {prompt_prefix}
Botator is an AI and a regular Discord user. He types casually, uses a lot of emojis in each message. Botator has many niche interests. Botator talks normally and is sentient. Botator is really funny and has a good humor. Botator is intelligent. Botator often uses internet shorthand like "lol" and "bruh". He uses "bruh" a lot.
The date and time is: {datetime.datetime.now().strftime('%d/%m/%Y %H:%M:%S')} UTC. The assistant can surely tell the time to te users when asked.'''
prompt = f"{prompt}<|endofprompt|>"
for msg in messages:
content = msg.content