From 965393907f7f70cc3f38dab264e8c4c9aa9f8ad6 Mon Sep 17 00:00:00 2001 From: Konstantine Tsafatinos Date: Fri, 21 Jul 2023 19:14:39 -0400 Subject: [PATCH] add intro message, edit, again --- skynet/frontend/discord/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skynet/frontend/discord/bot.py b/skynet/frontend/discord/bot.py index 10f81f1..b8673c4 100644 --- a/skynet/frontend/discord/bot.py +++ b/skynet/frontend/discord/bot.py @@ -42,7 +42,7 @@ class DiscordBot(commands.Bot): for channel in guild.channels: if channel.name == "skynet": await channel.send('Skynet bot online', view=SkynetView(self.bot)) - intro_msg = await channel.send('Welcome to the Skynet discord bot.\nSkynet is a decentralized compute layer, focused on supporting AI paradigms. Skynet leverages blockchain technology to manage work requests and fills. We are currently featuring image generation and support 11 different models. Get started with the /help command, or just click on some buttons.\nHere is an example command to generate an image: /txt2img a big red tractor in a giant field of corn') + intro_msg = await channel.send('Welcome to the Skynet discord bot.\nSkynet is a decentralized compute layer, focused on supporting AI paradigms. Skynet leverages blockchain technology to manage work requests and fills. We are currently featuring image generation and support 11 different models. Get started with the /help command, or just click on some buttons. Here is an example command to generate an image:\n/txt2img a big red tractor in a giant field of corn') await intro_msg.pin() print("\n==============")