From d22c0556d4314b1a32375c85578e212861b0a617 Mon Sep 17 00:00:00 2001 From: Konstantine Tsafatinos Date: Wed, 19 Jul 2023 13:28:08 -0400 Subject: [PATCH] add clean cool words and remove slut from copy --- skynet/constants.py | 22 ++++++++++++++++++++++ skynet/frontend/discord/handlers.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/skynet/constants.py b/skynet/constants.py index d3e319d..fae7805 100644 --- a/skynet/constants.py +++ b/skynet/constants.py @@ -82,6 +82,28 @@ COOL_WORDS = [ '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 = { 'step': ''' Diffusion models are iterative processes – a repeated cycle that starts with a\ diff --git a/skynet/frontend/discord/handlers.py b/skynet/frontend/discord/handlers.py index a72ab72..2919df8 100644 --- a/skynet/frontend/discord/handlers.py +++ b/skynet/frontend/discord/handlers.py @@ -58,7 +58,7 @@ def create_handler_context(frontend: 'SkynetDiscordFrontend'): @bot.command(name='cool', help='Display a list of cool prompt words') 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') async def send_txt2img(ctx):