From 66db7ccecaf8d01352688845cd450ca6e1c9ec53 Mon Sep 17 00:00:00 2001 From: nsde Date: Tue, 8 Aug 2023 01:04:06 +0200 Subject: [PATCH] Temporarily removed "Chat with AI" feature --- cord/bot.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cord/bot.py b/cord/bot.py index 43017fc..7b29cd3 100644 --- a/cord/bot.py +++ b/cord/bot.py @@ -41,11 +41,11 @@ async def on_message(message): await autochat.process(message) await bot.process_commands(message) -@bot.slash_command(description='Chat with AI') -async def chat(interaction: nextcord.Interaction, - prompt: str = SlashOption(description='AI Prompt', required=True) -): - await chatbot.respond(interaction, prompt) +# @bot.slash_command(description='Chat with AI') +# async def chat(interaction: nextcord.Interaction, +# prompt: str = SlashOption(description='AI Prompt', required=True) +# ): +# await chatbot.respond(interaction, prompt) @bot.slash_command(description='Sets your DMs up, so you can write the bot.') async def dm_setup(interaction: nextcord.Interaction):