modified draw command slightly

This commit is contained in:
phixxy 2023-07-18 11:10:08 -07:00
parent e17610c502
commit 3b0c3b775e

View file

@ -1084,8 +1084,14 @@ async def draw(ctx):
else:
amount = 1
await ctx.send("Please be patient this may take some time!")
prompt = "Give me 11 keywords I can use to generate art using AI. They should all be related to one piece of art. Please only respond with the keywords and no other text. Be sure to use keywords that really describe what the art portrays. Keywords should be comma separated with no other text!"
choice1 = "Give me 11 keywords I can use to generate art using AI. They should all be related to one piece of art. Please only respond with the keywords and no other text. Be sure to use keywords that really describe what the art portrays. Keywords should be comma separated with no other text!"
choice2 = "Give me some keywords about a piece of new art. They should all be related to one piece of art. Please only respond with the keywords and no other text. Be sure to use keywords that really describe what the art portrays. Keywords should be comma separated with no other text!"
choice3 = "Give me comma seperated keywords describing an imaginary piece of art. Only return the keywords and no other text."
prompt = random.choice([choice1,choice2,choice3])
prompt = await answer_question(prompt)
if random.randint(0,9):
prompt = prompt.replace("abstract, ", "")
prompt = prompt.replace("AI, ", "")
if "." in prompt:
prompt = prompt.replace(".",",")