Update code.py

This commit is contained in:
Paillat
2022-12-06 11:45:00 +01:00
parent abae497850
commit 1d6febbd2d

View File

@@ -268,6 +268,8 @@ async def pretend(ctx, pretend_to_be: str, message: str):
openai.api_key = data[2] openai.api_key = data[2]
prompt = f"An AI pretends to be {pretend_to_be} and answer the following question: \n Human:{message} \n AI:" prompt = f"An AI pretends to be {pretend_to_be} and answer the following question: \n Human:{message} \n AI:"
debug(f"The prompt is: {prompt}") debug(f"The prompt is: {prompt}")
#defer the response
await ctx.defer()
response = openai.Completion.create( response = openai.Completion.create(
engine="text-davinci-003", engine="text-davinci-003",
prompt=prompt, prompt=prompt,