24 lines
593 B
Python
24 lines
593 B
Python
import nextcord
|
|
from nextcord.ext import commands
|
|
import os
|
|
|
|
bot = commands.Bot()
|
|
|
|
@bot.event
|
|
async def on_ready():
|
|
print(f'We have logged in as {bot.user}')
|
|
|
|
@bot.slash_command(name="summarize", description="Summarize all or part of an article", dm_permission=True)
|
|
async def summarize(
|
|
interaction: nextcord.Interaction,
|
|
article: str,
|
|
part: Optional[str] = SlashOption(required=False)
|
|
):
|
|
print("Will summarize article.")
|
|
|
|
# TODO: Import bot token from env
|
|
bot.run(os.environ["DISCORD_TOKEN"],)
|
|
|
|
if __name__ == "__main__":
|
|
print("Handy Helper has Begun!")
|