add clean cool words and remove slut from copy

pull/11/head
Konstantine Tsafatinos 2023-07-19 13:28:08 -04:00
parent ecd7d17bbf
commit d22c0556d4
2 changed files with 23 additions and 1 deletions

View File

@ -82,6 +82,28 @@ COOL_WORDS = [
'michelangelo' 'michelangelo'
] ]
CLEAN_COOL_WORDS = [
'cyberpunk',
'soviet propaganda poster',
'rastafari',
'cannabis',
'art deco',
'H R Giger Necronom IV',
'dimethyltryptamine',
'lysergic',
'psilocybin',
'trippy',
'lucy in the sky with diamonds',
'fractal',
'da vinci',
'pencil illustration',
'blueprint',
'internal diagram',
'baroque',
'the last judgment',
'michelangelo'
]
HELP_TOPICS = { HELP_TOPICS = {
'step': ''' 'step': '''
Diffusion models are iterative processes a repeated cycle that starts with a\ Diffusion models are iterative processes a repeated cycle that starts with a\

View File

@ -58,7 +58,7 @@ def create_handler_context(frontend: 'SkynetDiscordFrontend'):
@bot.command(name='cool', help='Display a list of cool prompt words') @bot.command(name='cool', help='Display a list of cool prompt words')
async def send_cool_words(ctx): async def send_cool_words(ctx):
await ctx.reply(content='\n'.join(COOL_WORDS)) await ctx.reply(content='\n'.join(CLEAN_COOL_WORDS))
@bot.command(name='txt2img', help='Responds with an image') @bot.command(name='txt2img', help='Responds with an image')
async def send_txt2img(ctx): async def send_txt2img(ctx):