add intro message, edit

pull/11/head
Konstantine Tsafatinos 2023-07-21 19:12:32 -04:00
parent d74bfb4c59
commit 26684f7b83
1 changed files with 1 additions and 10 deletions

View File

@ -42,16 +42,7 @@ class DiscordBot(commands.Bot):
for channel in guild.channels: for channel in guild.channels:
if channel.name == "skynet": if channel.name == "skynet":
await channel.send('Skynet bot online', view=SkynetView(self.bot)) await channel.send('Skynet bot online', view=SkynetView(self.bot))
intro_msg = await channel.send('Welcome to the Skynet discord bot.\n \ 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: /txt2img a big red tractor in a giant field of corn')
Skynet 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: \
/txt2img a big red tractor in a giant field of corn')
await intro_msg.pin() await intro_msg.pin()
print("\n==============") print("\n==============")